Skip to content

Commit 3e241bb

Browse files
author
Orta Therox
authored
Merge pull request microsoft#1035 from microsoft/allow_sas_merge
Gives @saschanaz the ability to merge PRs which affect src/baselines/inputfiles
2 parents 5d11d38 + 0bb7729 commit 3e241bb

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
src/**/*.ts @saschanaz
2+
baselines/* @saschanaz
3+
inputfiles/**/* @saschanaz
4+
README.md @saschanaz
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Codeowners merging
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@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

Comments
 (0)