We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 382c3ee commit c72ed8bCopy full SHA for c72ed8b
README.md
@@ -49,16 +49,16 @@ You can use it as a Github Action like this:
49
50
_.github/main.workflow_
51
```
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
+on: [push, pull_request]
+name: Test
+jobs:
+ roave_bc_check:
+ name: Roave BC Check
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@master
+ - name: Roave BC Check
+ uses: docker://nyholm/roave-bc-check-ga
62
63
64
### Running manually
0 commit comments