From: Josef Schlehofer Date: Mon, 29 Jun 2026 10:28:55 +0000 (+0200) Subject: ci: update trigger to check_suite for test build X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=5bd5e68a0888eaf7a797493fe72402354b1956db;p=openwrt-packages.git ci: update trigger to check_suite for test build - Change trigger from check_run to check_suite completed event - Run feeds test build only when all checks in the suite succeed Fixes: ef633e9 ("ci: replace GitHub actions (labeler, formalities) by webhook") Signed-off-by: Josef Schlehofer --- diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml index 3520d83f9..c4eb776ab 100644 --- a/.github/workflows/multi-arch-test-build.yml +++ b/.github/workflows/multi-arch-test-build.yml @@ -1,7 +1,7 @@ name: Test and Build on: - check_run: + check_suite: types: [completed] permissions: @@ -11,5 +11,5 @@ permissions: jobs: build: name: Feeds Package Test Build - if: ${{ github.event.check_run.name == 'Formalities Check' && github.event.check_run.conclusion == 'success' }} + if: ${{ github.event.check_suite.conclusion == 'success' }} uses: openwrt/actions-shared-workflows/.github/workflows/multi-arch-test-build.yml@main