We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 950519f + 6ef492d commit 13f9a38Copy full SHA for 13f9a38
1 file changed
.github/workflows/auto-format.yml
@@ -62,9 +62,9 @@ jobs:
62
[[ $SENDER == "osotopbot" ]] || git push
63
# Set status to fail, because the push should trigger another status check,
64
# and we use success to indicate the checks are finished.
65
- printf "::set-output name=%s::%s\n" "changed" "true"
+ echo "changed=true" >> "$GITHUB_OUTPUT"
66
exit 1
67
else
68
- printf "::set-output name=%s::%s\n" "changed" "false"
+ echo "changed=false" >> "$GITHUB_OUTPUT"
69
echo "No changes detected"
70
fi
0 commit comments