"vscode:/vscode.git/clone" did not exist on "18effd77db1156c11848bd3bfadd8fa63c747516"
Unverified Commit 8113ed06 authored by Marc Cornellà's avatar Marc Cornellà Committed by GitHub
Browse files

Add GitHub Action to label Pull Requests

parent 55f20fed
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"]
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment