-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add GH action to check for TSC votes on core dataset changes (#896)
* Add GH action to check for TSC votes on core dataset changes * Ignore TSC vote action in gatekeeper * Trigger TSC vote action only on changes in core dataset --------- Signed-off-by: Merel Theisen <[email protected]>
- Loading branch information
Showing
3 changed files
with
51 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,36 @@ | ||
{ | ||
"teams": { | ||
"everyone": { | ||
"description": "A team that contains all TSC members.", | ||
"users": [ | ||
"ankatiyar", | ||
"astrojuanlu", | ||
"datajoely", | ||
"deepyaman", | ||
"DimedS", | ||
"Galileo-Galilei", | ||
"Huongg", | ||
"idanov", | ||
"jitu5", | ||
"lrcouto", | ||
"marrrcin", | ||
"merelcht", | ||
"noklam", | ||
"rashidakanchwala", | ||
"ravi-kumar-pilla", | ||
"SajidAlamQB", | ||
"sbrugman", | ||
"stephkaiser", | ||
"tynandebold", | ||
"yetudada" | ||
] | ||
} | ||
}, | ||
"reviewers": { | ||
"kedro-datasets/kedro_datasets/": { | ||
"description": "Require at least 1/2 TSC approval on new core dataset contributions.", | ||
"teams": ["everyone"], | ||
"requiredApproverCount": 10 | ||
} | ||
} | ||
} |
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,14 @@ | ||
name: Required Reviews | ||
on: | ||
pull_request: | ||
paths: | ||
- 'kedro-datasets/kedro_datasets/*' | ||
jobs: | ||
required-reviews: | ||
name: Required Reviews | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: required-reviewers | ||
uses: theoremlp/required-reviews@v2 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
|
@@ -24,3 +24,4 @@ jobs: | |
token: ${{ secrets.GITHUB_TOKEN }} | ||
timeout: 2400 | ||
interval: 30 | ||
ignored: 'Required Reviews' |