Skip to content

Commit c72ed8b

Browse files
authored
Fix github action instructions
1 parent 382c3ee commit c72ed8b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ You can use it as a Github Action like this:
4949

5050
_.github/main.workflow_
5151
```
52-
workflow "Main" {
53-
on = "push"
54-
resolves = ["Roave BC Check"]
55-
}
56-
57-
action "Roave BC Check" {
58-
uses = "docker://nyholm/roave-bc-check-ga"
59-
secrets = ["GITHUB_TOKEN"]
60-
args = ""
61-
}
52+
on: [push, pull_request]
53+
name: Test
54+
jobs:
55+
roave_bc_check:
56+
name: Roave BC Check
57+
runs-on: ubuntu-latest
58+
steps:
59+
- uses: actions/checkout@master
60+
- name: Roave BC Check
61+
uses: docker://nyholm/roave-bc-check-ga
6262
```
6363

6464
### Running manually

0 commit comments

Comments
 (0)