Add GitHub Action to label Pull Requests

This commit is contained in:
Marc Cornellà 2019-05-03 16:31:22 +02:00 committed by GitHub
parent 55f20fed6e
commit 8113ed065d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.github/main.workflow vendored Normal file
View File

@ -0,0 +1,17 @@
workflow "Triage Pull Request" {
on = "pull_request"
resolves = ["Triage"]
}
# Only act if there are code changes: if the pull_request
# event's action is either 'opened' (new PR) or 'synchronize' (new commits)
action "Filter actions" {
uses = "actions/bin/filter@0ac6d44"
args = "action 'opened|synchronize'"
}
action "Triage" {
needs = ["Filter actions"]
uses = "ohmyzsh/github-actions/pull-request-triage@master"
secrets = ["GITHUB_TOKEN"]
}