0.12.1 #80
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cancel All Workflows | |
on: push | |
# Push again in the same branch | |
# automatically all the worklows will be cancelled | |
# To prevent this cancellation, comment this workflow | |
jobs: | |
task: | |
runs-on: ubuntu-latest | |
name: Task | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test Step | |
uses: ./ # Uses an action in the root directory | |
with: | |
access_token: ${{ github.token }} | |
workflow_id: all | |
- uses: actions/setup-node@v4 | |
- run: echo 'Sleeping...'; sleep 120; echo 'Done.'; |