We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d0fb76 commit 8e113c9Copy full SHA for 8e113c9
1 file changed
.github/workflows/auto-merge.yml
@@ -0,0 +1,25 @@
1
+name: Auto-merge PRs
2
+
3
+on:
4
+ schedule:
5
+ - cron: '*/15 * * * *'
6
+ workflow_dispatch:
7
8
+permissions:
9
+ pull-requests: write
10
+ contents: write
11
12
+jobs:
13
+ auto-merge:
14
+ if: github.repository == 'nodejs/discord-status-worker'
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - name: Harden Runner
19
+ uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0
20
+ with:
21
+ egress-policy: audit
22
23
+ - uses: nodejs/web-team/actions/auto-merge-prs@b087df186d25f8792fb85cc7794f68718726b8ee
24
25
+ merge-method: queue
0 commit comments