0.12.1 #322
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 Self | |
on: [push] | |
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 }} | |
- uses: actions/setup-node@v4 | |
- run: echo 'Sleeping...'; sleep 120; echo 'Done.'; |