Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

Commit

Permalink
init venue labels workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonrosage committed May 9, 2019
1 parent 6c846f3 commit 7e022e0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/venue-labels.workflow
@@ -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"]
}

0 comments on commit 7e022e0

Please sign in to comment.