We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2319569 commit 3d64c08Copy full SHA for 3d64c08
prepare-release/action.yml
@@ -69,13 +69,13 @@ runs:
69
shell: bash
70
# don't use `gh repo fork` since it doesn't provide consistent output
71
# see: https://github.com/cli/cli/issues/10079
72
- run: |
73
- echo FORK=$(gh api \
74
- -X POST \
75
- -H "Accept: application/vnd.github+json" \
76
- "/repos/${{ github.repository }}/forks" \
77
- -f default_branch_only=true \
78
- --jq ".full_name") >> $GITHUB_ENV
+ run: >-
+ echo FORK=$(gh api
+ -X POST
+ -H "Accept: application/vnd.github+json"
+ "/repos/${{ github.repository }}/forks"
+ -f default_branch_only=true
+ --jq ".full_name") >> $GITHUB_ENV
79
env:
80
GH_TOKEN: ${{ inputs.fork-token || inputs.token }}
81
0 commit comments