Fix workflow

This commit is contained in:
Daniel Tschinder 2019-07-20 15:22:21 +02:00 committed by GitHub
parent c84a4c8bfa
commit 94b678c949
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
.github/main.workflow vendored
View File

@ -26,8 +26,7 @@ action "Trigger GitHub release" {
workflow "Issues" {
resolves = [
"Create Welcome Comment",
"Create Needs Info Comment",
"Has label 'Needs Info'",
"Create Needs Info Comment"
]
on = "issues"
}
@ -48,6 +47,11 @@ action "Is action 'labeled'" {
args = "action labeled"
}
action "Has label 'Needs Info'" {
uses = "actions/bin/filter@master"
args = "label 'Needs Info'"
}
action "Create Needs Info Comment" {
uses = "babel/actions/create-needs-info-comment@master"
needs = [
@ -56,8 +60,3 @@ action "Create Needs Info Comment" {
]
secrets = ["BOT_TOKEN", "GITHUB_TOKEN"]
}
action "Has label 'Needs Info'" {
uses = "actions/bin/filter@master"
args = "label 'Needs Info'"
}