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 5d11d38 + 0bb7729 commit 3e241bbCopy full SHA for 3e241bb
.github/CODEOWNERS
@@ -0,0 +1,4 @@
1
+src/**/*.ts @saschanaz
2
+baselines/* @saschanaz
3
+inputfiles/**/* @saschanaz
4
+README.md @saschanaz
.github/workflows/codeowners-merge.yml
@@ -0,0 +1,20 @@
+name: Codeowners merging
+on:
+ pull_request_target: { types: [opened] }
+ 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@v1
13
+ - name: Run Codeowners merge check
14
+ uses: OSS-Docs-Tools/code-owner-self-merge@1.5.3
15
+ env:
16
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
+ with:
18
+ merge_method: 'squash'
19
+ if_no_maintainers_add_label: 'maintainers'
20
+ if_no_maintainers_assign: '@orta @sandersn'
0 commit comments