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.
2 parents bb6e887 + 8038c40 commit bc0366fCopy full SHA for bc0366f
.github/workflows/docs-pr.yml
@@ -66,12 +66,12 @@ jobs:
66
git add src/_data/boot-contracts-reference.json
67
if $(git diff --staged --quiet --exit-code); then
68
echo "No reference.json changes, stopping"
69
- echo "::set-output name=open_pr::0"
+ echo "open_pr=0" >> "$GITHUB_OUTPUT"
70
else
71
git remote add robot https://github.com/$ROBOT_OWNER/$ROBOT_REPO
72
git commit -m "auto: update Clarity references JSONs from stacks-core@${GITHUB_SHA}"
73
git push robot $ROBOT_BRANCH
74
- echo "::set-output name=open_pr::1"
+ echo "open_pr=1" >> "$GITHUB_OUTPUT"
75
fi
76
77
- name: Open PR
0 commit comments