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 b9d656a commit 7b13e70Copy full SHA for 7b13e70
.github/workflows/bump-controls.yml
@@ -31,6 +31,18 @@ jobs:
31
- name: Checkout the repository
32
uses: actions/checkout@v4
33
34
+ - name: Generate GitHub Apps token
35
+ if: github.repository_owner == 'Lamparter'
36
+ id: generate
37
+ uses: actions/create-github-app-token@v1
38
+ with:
39
+ app-id: ${{ secrets.BOT_APP_ID }}
40
+ private-key: ${{ secrets.BOT_PRIVATE_KEY }}
41
+
42
+ - name: Login to gh cli
43
+ run: |
44
+ "GH_TOKEN=${{ steps.generate.outputs.token }}"
45
46
- name: Bump Version
47
id: bump_version
48
shell: pwsh
0 commit comments