We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67c690d commit 9c4b387Copy full SHA for 9c4b387
.github/workflows/release-packages.yml
@@ -18,16 +18,18 @@ jobs:
18
runs-on: ubuntu-latest
19
20
steps:
21
+ - name: Create Github App Token
22
+ uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
23
+ id: app-token
24
+ with:
25
+ app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
26
+ private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
27
+
28
- uses: actions/checkout@v4
29
with:
30
# don't checkout a detatched HEAD
31
ref: ${{ github.head_ref }}
32
- - name: Setup git
- run: |
- git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
- git config --local user.name "github-actions[bot]"
-
33
- name: "Use Node.js 14"
34
uses: actions/setup-node@v3
35
0 commit comments