We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b81cf commit 51c8dedCopy full SHA for 51c8ded
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 "::set-output name=has_change::true" || echo "::set-output name=has_change::false"
+ [ -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 "::set-output name=has_change::true"
+ run: echo "has_change=true" >> $GITHUB_OUTPUT
52
53
acceptance-suite:
54
needs: changes
0 commit comments