We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70c7645 commit 67a3c14Copy full SHA for 67a3c14
1 file changed
.github/workflows/merge-up.yml
@@ -5,22 +5,24 @@ on:
5
branches:
6
- "v[0-9]+.[0-9x]+"
7
8
-env:
9
- GH_TOKEN: ${{ secrets.MERGE_UP_TOKEN }}
10
-
11
jobs:
12
merge-up:
13
name: Create merge up pull request
14
runs-on: ubuntu-latest
+ permissions:
+ id-token: write
+ contents: write
15
+ pull-requests: write
16
17
steps:
18
- name: Checkout
19
id: checkout
- uses: actions/checkout@v6
20
+ uses: mongodb-labs/drivers-github-tools/secure-checkout@v3
21
with:
- # fetch-depth 0 is required to fetch all branches, not just the branch being built
22
+ app_id: ${{ vars.PR_APP_ID }}
23
+ private_key: ${{ secrets.PR_APP_PRIVATE_KEY }}
24
+ submodules: true
25
fetch-depth: 0
- token: ${{ secrets.MERGE_UP_TOKEN }}
26
27
- name: Create pull request
28
id: create-pull-request
0 commit comments