https://github.com/testableapple/re-run-only-failed-jobs-on-github-actions
Give your jobs a try 😉
https://github.com/testableapple/re-run-only-failed-jobs-on-github-actions
Last synced: 3 months ago
JSON representation
Give your jobs a try 😉
- Host: GitHub
- URL: https://github.com/testableapple/re-run-only-failed-jobs-on-github-actions
- Owner: testableapple
- License: mit
- Created: 2021-03-18T13:03:07.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-18T15:33:52.000Z (about 5 years ago)
- Last Synced: 2025-03-02T20:41:39.967Z (about 1 year ago)
- Homepage: https://alteral.github.io/note-25
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Specification
- `actions/cache@v2` caches the previous run result
- `if` condition skips already successful jobs on re-run:
```yml
if: steps.run_result.outputs.run_result != 'success'
```