An open API service indexing awesome lists of open source software.

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 😉

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'
```