This commit is contained in:
John Molakvoæ 2019-04-17 10:41:27 +02:00 коммит произвёл GitHub
Родитель 8502381ab1
Коммит 3064451748
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 33 удалений

33
.github/npmbuildandcommit.workflow поставляемый
Просмотреть файл

@ -1,33 +0,0 @@
workflow "On comment" {
resolves = ["Status"]
on = "issue_comment"
}
action "Is pull request" {
uses = "actions/bin/filter@master"
args = "branch *"
}
action "Check command" {
needs = "Is pull request"
uses = "actions/bin/filter@master"
args = "issue_comment build and commit /*"
}
action "Npm install" {
needs = "Check command"
uses = "actions/npm@master"
args = "install"
}
action "Npm build" {
needs = "Npm install"
uses = "actions/npm@master"
args = "run build"
}
action "Status" {
needs = "Npm build"
uses = "srt32/git-actions@v0.0.3"
args = "git status"
}