mirror of
https://github.com/sdras/awesome-actions.git
synced 2024-10-01 00:55:38 -04:00
Update Actions format to new workflow declaration
This commit is contained in:
parent
0a2a47b3f0
commit
6760683639
13
.github/main.workflow
vendored
13
.github/main.workflow
vendored
@ -1,13 +0,0 @@
|
||||
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"]
|
||||
}
|
8
.github/workflows/lint.yml
vendored
Normal file
8
.github/workflows/lint.yml
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
name: Lint Awesome List
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
lint:
|
||||
name: Lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: max/awesome-lint@1.0.0
|
Loading…
Reference in New Issue
Block a user