-
Notifications
You must be signed in to change notification settings - Fork 688
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add auto assign reviewer github action (#2854)
* test: add auto assign reviewer github action * TomShawn -> yikeke
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
# you can use glob pattern | ||
|
||
# You can set multiple reviewers | ||
# '.github/': | ||
# - yikeke | ||
# - ran-huang | ||
|
||
# 'tiflash/': | ||
# - zanmato1984 | ||
# - kissmydb | ||
# - yikeke | ||
|
||
# 'tiup/': | ||
# - lonng | ||
# - lucklove | ||
# - kissmydb | ||
# - yikeke | ||
|
||
# 'sql-statements/': | ||
# - bb7133 | ||
|
||
# 'releases/': | ||
# - scsldb | ||
|
||
# 'dashboard/': | ||
# - breeswish | ||
|
||
# 'config-templates/': | ||
# - kissmydb | ||
|
||
# 'ticdc/': | ||
# - WangXiangUSTC | ||
|
||
# Changing all md files should request a language review in case of format failures. | ||
# TomShawn is the repo administrator. | ||
'*.*': | ||
- yikeke |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: "Auto Assign" | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
types: [opened] | ||
|
||
jobs: | ||
assign_reviewer: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: shufo/auto-assign-reviewer-by-files@v1.0.0 | ||
with: | ||
config: '.github/assign-by-files.yml' | ||
token: ${{ secrets.GITHUB_TOKEN }} |