Rerun tests if failed #1834
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: Rerun tests if failed | |
on: | |
workflow_run: | |
workflows: ["Unit-tests for Conda install", "Unit-tests for Pip install with mypy type checks", "Unit-tests for Pip install"] | |
types: ["completed"] | |
permissions: | |
actions: write | |
jobs: | |
rerun-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Log workflow metadata | |
run: | | |
echo "ID: ${{ github.event.workflow_run.id }}" | |
echo "attempt: ${{ github.event.workflow_run.run_attempt }}" | |
echo "event: ${{ github.event.workflow_run.conclusion }}" | |
echo "event: ${{ github.event.workflow_run.event }}" | |
- name: Rerun Failed Workflows | |
if: github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.run_attempt <= 3 | |
env: | |
GH_TOKEN: ${{ github.token }} | |
RUN_ID: ${{ github.event.workflow_run.id }} | |
run: | | |
gh run rerun ${RUN_ID} --repo="${{ github.repository }}" --failed |