From 8f3c2485ecac6c440e5597fa7c2edfc1f74ef14f Mon Sep 17 00:00:00 2001 From: Aleksandr Kurlov Date: Thu, 18 Dec 2025 09:30:31 +0100 Subject: [PATCH] Add a workflow which restarts failed Konflux builds --- .github/workflows/konflux-auto-retest.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/konflux-auto-retest.yml diff --git a/.github/workflows/konflux-auto-retest.yml b/.github/workflows/konflux-auto-retest.yml new file mode 100644 index 0000000000..3df93ddf15 --- /dev/null +++ b/.github/workflows/konflux-auto-retest.yml @@ -0,0 +1,14 @@ +name: Auto-retest Konflux Builds + +on: + check_run: + types: [completed] + pull_request: + types: [synchronize] + +jobs: + retest-failed-builds: + uses: stackrox/actions/konflux/auto-retest/retest-failed-builds.yml@v1 + with: + max_retries: 3 + check_name_suffix: '-on-push'