init venue labels workflow
This commit is contained in:
parent
6c846f385b
commit
7e022e0e98
1 changed files with 29 additions and 0 deletions
29
.github/venue-labels.workflow
vendored
Normal file
29
.github/venue-labels.workflow
vendored
Normal 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"]
|
||||||
|
}
|
Loading…
Reference in a new issue