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 f67356a commit 882ec50Copy full SHA for 882ec50
.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 "open_pr=0" >> $GITHUB_OUTPUT
+ 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 "open_pr=1" >> $GITHUB_OUTPUT
+ echo "open_pr=1" >> "$GITHUB_OUTPUT"
75
fi
76
77
- name: Open PR
0 commit comments