From ebbeb9815be324ab85cc7452885faab12c5e6a7b Mon Sep 17 00:00:00 2001 From: Jeffrey Parker Date: Thu, 22 Jan 2026 16:26:26 -0500 Subject: [PATCH] Add ci_success job for stable branch protection Adds a ci_success job that depends on all CI matrix jobs completing successfully. This provides a stable job name for branch protection rules that won't change when the CI matrix is updated. --- .github/workflows/php_ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/php_ci.yml b/.github/workflows/php_ci.yml index 5764ff0..a921be6 100644 --- a/.github/workflows/php_ci.yml +++ b/.github/workflows/php_ci.yml @@ -34,3 +34,10 @@ jobs: - name: PHP tests run: ./vendor/bin/phpunit + + ci_success: + name: CI Success + runs-on: ubuntu-latest + needs: [ci] + steps: + - run: echo "All CI jobs passed successfully"