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.
2 parents 7cb0521 + 4b09bfa commit c3e0690Copy full SHA for c3e0690
.github/workflows/auto-merge.yml
@@ -7,10 +7,14 @@ on:
7
jobs:
8
auto-merge:
9
runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: write
12
+ pull-requests: write
13
+
14
steps:
15
- name: Check if PR is eligible for auto-merge
16
id: check
- uses: actions/github-script@v6
17
+ uses: actions/github-script@v7.0.1 # Latest version
18
with:
19
github-token: ${{ secrets.GITHUB_TOKEN }}
20
script: |
@@ -41,7 +45,7 @@ jobs:
41
45
42
46
- name: Auto-Merge PR
43
47
if: steps.check.outputs.shouldMerge == 'true'
44
48
49
50
51
0 commit comments