add maintainer review action to main.workflow

This commit is contained in:
Todd Gamblin 2019-08-04 10:14:44 -07:00 committed by GitHub
parent 3179d98e12
commit 54e3bc31f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
.github/main.workflow vendored Normal file
View file

@ -0,0 +1,9 @@
workflow "New workflow" {
on = "pull_request"
resolves = [".github/actions/add-maintainers-as-reviewers"]
}
action ".github/actions/add-maintainers-as-reviewers" {
uses = ".github/actions/add-maintainers-as-reviewers"
secrets = ["GITHUB_TOKEN"]
}