We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ce6353 commit 3019cd7Copy full SHA for 3019cd7
.github/workflows/build.yml
@@ -6,6 +6,9 @@ on:
6
- main
7
pull_request: { }
8
9
+permissions:
10
+ id-token: write
11
+
12
defaults:
13
run:
14
shell: bash
@@ -23,10 +26,18 @@ jobs:
23
26
runs-on: ubuntu-latest
24
27
timeout-minutes: 30
25
28
steps:
29
+ - name: Get GitHub Token
30
+ id: get-token
31
+ uses: remal/github-repository-token-issuer@v1
32
+ with:
33
+ scopes: |
34
+ contents: write
35
+ workflows: write
36
37
- name: Checkout repository
38
uses: actions/checkout@v6
39
with:
- token: ${{secrets.PUSH_BACK_TOKEN}}
40
+ token: ${{steps.get-token.outputs.token}}
41
submodules: recursive
42
lfs: true
43
fetch-depth: 1
0 commit comments