We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3c5cc64 + 20e36c9 commit f03f76aCopy full SHA for f03f76a
.github/workflows/versioning.yaml
@@ -16,10 +16,16 @@ jobs:
16
if: |
17
(!(github.event.head_commit.message == 'Update package version'))
18
steps:
19
+ - name: Generate GitHub App token
20
+ id: app-token
21
+ uses: actions/create-github-app-token@v1
22
+ with:
23
+ app-id: ${{ secrets.APP_ID }}
24
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
25
- name: Checkout repo
26
uses: actions/checkout@v4
27
with:
- token: ${{ secrets.POLICYENGINE_GITHUB }}
28
+ token: ${{ steps.app-token.outputs.token }}
29
fetch-depth: 0
30
- name: Setup Python
31
uses: actions/setup-python@v5
0 commit comments