We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cba5fb5 commit 9a8645dCopy full SHA for 9a8645d
.github/workflows/post-release-mergeback.yml
@@ -162,11 +162,18 @@ jobs:
162
--assignee "${GITHUB_ACTOR}" \
163
--draft
164
165
+ - name: Generate token
166
+ uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69
167
+ id: app-token
168
+ with:
169
+ app-id: ${{ vars.AUTOMATION_APP_ID }}
170
+ private-key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}
171
+
172
- name: Create the GitHub release
173
env:
174
PARTIAL_CHANGELOG: "${{ runner.temp }}/partial_changelog.md"
175
VERSION: "${{ steps.getVersion.outputs.version }}"
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
176
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
177
run: |
178
# Do not mark this release as latest. The most recent CLI release must be marked as latest.
179
gh release create \
0 commit comments