You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
461 B
17 lines
461 B
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"] |
|
}
|
|
|