Test Long Running Job #1
This file contains hidden or 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: Test Long Running Job | |
| on: workflow_dispatch | |
| jobs: | |
| long: | |
| runs-on: [self-hosted, stacktape] | |
| steps: | |
| - run: | | |
| echo "Long job started at $(date)" | |
| echo "Sleeping 60 seconds to test auto-stop awareness..." | |
| sleep 60 | |
| echo "Long job finished at $(date)" |