We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8ab31f3 + 805d145 commit e5eda4dCopy full SHA for e5eda4d
2 files changed
.github/workflows/push.yaml
@@ -95,10 +95,16 @@ jobs:
95
needs: [Lint, Test]
96
if: github.event.head_commit.message != 'Update package version'
97
steps:
98
+ - name: Generate GitHub App token
99
+ id: app-token
100
+ uses: actions/create-github-app-token@v1
101
+ with:
102
+ app-id: ${{ secrets.APP_ID }}
103
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
104
- name: Checkout repo
105
uses: actions/checkout@v4
106
with:
- token: ${{ secrets.GITHUB_TOKEN }}
107
+ token: ${{ steps.app-token.outputs.token }}
108
- name: Setup Python
109
uses: actions/setup-python@v5
110
changelog.d/fix-app-token.fixed.md
@@ -0,0 +1 @@
1
+Use GitHub App token in push workflow Versioning job to enable auto-triggering of Phase 2 (Publish)
0 commit comments