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 9694ceb commit 718c424Copy full SHA for 718c424
.github/workflows/autofix-reminder.yml
@@ -36,10 +36,10 @@ jobs:
36
gh api "repos/${GITHUB_REPOSITORY}/issues/${PR_NUMBER}/labels" | jq -r '.[].name' > labels.txt
37
38
if grep -q -x -e "${REQUIRES_AUTOFIX_LABEL}" labels.txt || grep -q -x -e "${DOES_NOT_REQUIRE_AUTOFIX_LABEL}" labels.txt; then
39
- echo "::set-output name=should_continue::false"
+ echo "should_continue=false" >> $GITHUB_OUTPUT
40
echo "Stopping workflow due to label presence."
41
else
42
- echo "::set-output name=should_continue::true"
+ echo "should_continue=true" >> $GITHUB_OUTPUT
43
fi
44
45
- name: Add label
0 commit comments