Browse Source

Add in a missing space that is failing all workflow linters (#108)

pull/109/head
Joseph Flinn 3 years ago committed by GitHub
parent
commit
e9dbc0b5ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/workflow-linter.yml

2
.github/workflows/workflow-linter.yml

@ -25,7 +25,7 @@ jobs: @@ -25,7 +25,7 @@ jobs:
MODIFIED_EXISTING_WORKFLOWS=""
for workflow in $MODIFIED_WORKFLOWS; do
if [ -f $workflow ]; then
MODIFIED_EXISTING_WORKFLOWS+="${workflow}"
MODIFIED_EXISTING_WORKFLOWS+=" ${workflow}"
fi
done
echo "::set-output name=modified-workflows::$MODIFIED_EXISTING_WORKFLOWS"

Loading…
Cancel
Save