init venue labels workflow

This commit is contained in:
Brandon Rosage 2019-05-09 12:12:25 -05:00 committed by GitHub
parent 6c846f385b
commit 7e022e0e98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

29
.github/venue-labels.workflow vendored Normal file
View file

@ -0,0 +1,29 @@
workflow "Add venue information to gig issue" {
on = "issues"
resolves = [
"debug",
"Add venue information",
]
}
action "Not close issue" {
uses = "actions/bin/filter@master"
args = "not action closed"
}
action "Has article identifier" {
uses = "actions/bin/filter@master"
needs = ["Not close issue"]
args = ["label", "papers"]
}
action "debug" {
needs = ["Has article identifier"]
uses = "actions/bin/debug@master"
}
action "Update Article Information" {
uses = "docker://uribo/bucky"
needs = ["Has article identifier"]
secrets = ["GITHUB_TOKEN"]
}