Skip to content

Commit

Permalink
Update README.md to the correct version (#173)
Browse files Browse the repository at this point in the history
Update the version to `0.10.0` where `workflow_id` accepts the `all` value in #165.
  • Loading branch information
licitdev committed Jul 20, 2022
1 parent 7abdb90 commit fc572a4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0
with:
access_token: ${{ github.token }}
#- name: Run Tests
Expand All @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/cancel-workflow-action@0.9.1
- uses: styfle/cancel-workflow-action@0.10.0
with:
workflow_id: 479426
access_token: ${{ github.token }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
cancel:
runs-on: ubuntu-latest
steps:
- uses: styfle/cancel-workflow-action@0.9.1
- uses: styfle/cancel-workflow-action@0.10.0
with:
workflow_id: ${{ github.event.workflow.id }}
```
Expand All @@ -95,7 +95,7 @@ jobs:
timeout-minutes: 3
steps:
- name: Cancel build runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0
with:
ignore_sha: true
workflow_id: 479426
Expand All @@ -116,7 +116,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/cancel-workflow-action@0.9.1
- uses: styfle/cancel-workflow-action@0.10.0
with:
all_but_latest: true
access_token: ${{ github.token }}
Expand All @@ -138,7 +138,7 @@ jobs:
actions: write
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0
with:
access_token: ${{ github.token }}
```
Expand Down

0 comments on commit fc572a4

Please sign in to comment.