diff --git a/.github/workflows/retest.yml b/.github/workflows/retest.yml new file mode 100644 index 000000000..3352fc1a8 --- /dev/null +++ b/.github/workflows/retest.yml @@ -0,0 +1,18 @@ +--- +name: "Retest approved pull Requests" +# yamllint disable-line rule:truthy +on: + schedule: + # Run the retest action every 30 minutes + - cron: "30 * * * *" +jobs: + retest: + runs-on: ubuntu-latest + steps: + # path to the retest action + - uses: ceph/ceph-csi/actions/retest@devel + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + required-label: "ci/retry/e2e" + max-retry: "5" + required-approve-count: "2"