Update and rename pullrequest.workflow to main.workflow

This commit is contained in:
Gary Ewan Park 2019-08-19 08:41:11 +01:00 committed by GitHub
parent c55ecce251
commit cb91b2567d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 8 deletions

13
.github/main.workflow vendored Normal file
View File

@ -0,0 +1,13 @@
workflow "Lint Awesome List on Pull Request" {
resolves = ["max/awesome-lint"]
on = "pull_request"
}
action "max/awesome-lint" {
uses = "max/awesome-lint@1.0.0"
}
workflow "Lint Awesome List on Push" {
on = "push"
resolves = ["max/awesome-lint"]
}

View File

@ -1,8 +0,0 @@
workflow "Lint Awesome List" {
resolves = ["max/awesome-lint"]
on = "pull_request"
}
action "max/awesome-lint" {
uses = "max/awesome-lint@1.0.0"
}