Skip to content

Commit

Permalink
fix(workflow/check): wrong quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
alex3236 committed Oct 1, 2024
1 parent cf801cb commit eb0c90b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/scripts/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@
elif file.startswith('.github/workflows'):
actions.add(Action(Tag.WORKFLOW))

logger.info(f'Identified actions: {', '.join(map(str, actions))}')
logger.info(f'Identified labels: {', '.join(map(str, actions.labels))}')
logger.info(f'Identified actions: {", ".join(map(str, actions))}')
logger.info(f'Identified labels: {", ".join(map(str, actions.labels))}')


#! ---- Run plugin checks and generate report ---- ##
Expand All @@ -166,7 +166,7 @@
plugin_list = []
reached_limit = False
if modified_plugins:
logger.info(f'Checking plugins: {', '.join(modified_plugins)}')
logger.info(f'Checking plugins: {", ".join(modified_plugins)}')
reporter.record_script_start()
reporter.record_command('pr_check')
if len(modified_plugins) > PLUGIN_CHECK_LIMIT > 0:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def get_changed(change_type: str) -> list[str]:
#! ---- Validation report ---- ##

def _row(*args):
return f'| {' | '.join(args)} |\n'
return f'| {" | ".join(args)} |\n'


def _rowval(info, value, valid, valid_icon='✅', invalid_icon='❌'):
Expand Down

0 comments on commit eb0c90b

Please sign in to comment.