We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b37bf5 commit 66585d0Copy full SHA for 66585d0
.github/workflows/update-zarf-injector.yaml
@@ -43,14 +43,14 @@ jobs:
43
run: |
44
if git diff --quiet; then
45
echo "No changes detected."
46
- echo "::set-output name=changes::false"
+ echo "changes=false" >> $GITHUB_ENV
47
else
48
echo "Changes detected."
49
- echo "::set-output name=changes::true"
+ echo "changes=true" >> $GITHUB_ENV
50
fi
51
52
- name: Commit and push changes
53
- if: steps.git_status.outputs.changes == 'true'
+ if: env.changes == 'true'
54
55
git config --global user.email "github-actions[bot]@users.noreply.github.com"
56
git config --global user.name "GitHub Actions Bot"
0 commit comments