From 7e022e0e985c6421133123656bd639081645f39a Mon Sep 17 00:00:00 2001 From: Brandon Rosage Date: Thu, 9 May 2019 12:12:25 -0500 Subject: [PATCH] init venue labels workflow --- .github/venue-labels.workflow | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/venue-labels.workflow diff --git a/.github/venue-labels.workflow b/.github/venue-labels.workflow new file mode 100644 index 0000000..c44a324 --- /dev/null +++ b/.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"] +}