We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 885b8ee commit db31c4bCopy full SHA for db31c4b
1 file changed
.github/workflows/upstream.yml
@@ -15,6 +15,13 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
+ - name: Generate GitHub App token
19
+ id: app-token
20
+ uses: actions/create-github-app-token@v2
21
+ with:
22
+ app-id: ${{ secrets.APP_ID }}
23
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
24
+
25
- name: Checkout
26
uses: actions/checkout@v6
27
@@ -24,7 +31,8 @@ jobs:
31
- name: Check for upstream releases
32
run: cargo run -p scripts --bin upstream
33
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28
- GIT_USER_NAME: github-actions[bot]
29
- GIT_USER_EMAIL: github-actions[bot]@users.noreply.github.com
34
+ GITHUB_ACTOR: rust-for-web[bot]
35
+ GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
36
+ GIT_USER_NAME: rust-for-web[bot]
37
+ GIT_USER_EMAIL: 191031261+rust-for-web[bot]@users.noreply.github.com
30
38
RUST_LOG: upstream=debug
0 commit comments