There was an error while loading. Please reload this page.
1 parent 11cb605 commit 61c6440Copy full SHA for 61c6440
1 file changed
.github/workflows/auto-merge.yml
@@ -0,0 +1,19 @@
1
+name: Codeowners auto-merge
2
+on:
3
+ pull_request_target: { types: [opened] }
4
+ issue_comment: { types: [created] }
5
+ pull_request_review: { types: [submitted] }
6
+
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: Run Codeowners merge check
14
+ uses: OSS-Docs-Tools/code-owner-self-merge@1.6.8
15
+ with:
16
+ if_no_maintainers_add_label: 'maintainers'
17
+ if_no_maintainers_assign: '@knutfrode @gauteh'
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments