I am building github action pipelines, I want to add an auto retry to my jobs similar to how the retry keyword works in gitlab, where on failure the full step will be run again. Is there anything in github actions that allows this?
Here is an example job I am using:
jobs:
env-check:
runs-on: ubuntu-latest
container:
image: myimage
steps:
- uses: actions/checkout@v2
- name: env-check
run: |
echo "foobar"