We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51c8ded commit 9672545Copy full SHA for 9672545
1 file changed
.github/workflows/acceptance.yml
@@ -44,11 +44,11 @@ jobs:
44
> diff.txt
45
46
# If the diff file is not empty, it has changes.
47
- [ -s diff.txt ] && echo "has_change=true" >> $GITHUB_OUTPUT || echo "has_change=false" >> $GITHUB_OUTPUT
+ [ -s diff.txt ] && echo "has_change=true" >> "$GITHUB_OUTPUT" || echo "has_change=false" >> "$GITHUB_OUTPUT"
48
49
- name: set has_change to true for push to main/master
50
if: github.event_name == 'push'
51
- run: echo "has_change=true" >> $GITHUB_OUTPUT
+ run: echo "has_change=true" >> "$GITHUB_OUTPUT"
52
53
acceptance-suite:
54
needs: changes
0 commit comments