From 33623e5a1acc67e0613b8656255b602b371198c6 Mon Sep 17 00:00:00 2001 From: "brainpink-security-automation[bot]" <318928574+brainpink-security-automation[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2026 12:52:00 +0000 Subject: [PATCH 1/2] Configure .github/dependabot.yml security automation --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..e180032a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,2 @@ +version: 2 +updates: [] From a451b649f54891b5cc38fe6ec087cd470c232f35 Mon Sep 17 00:00:00 2001 From: "brainpink-security-automation[bot]" <318928574+brainpink-security-automation[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2026 12:52:01 +0000 Subject: [PATCH 2/2] Configure .github/workflows/security-ci.yml security automation --- .github/workflows/security-ci.yml | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/security-ci.yml diff --git a/.github/workflows/security-ci.yml b/.github/workflows/security-ci.yml new file mode 100644 index 00000000..208def6d --- /dev/null +++ b/.github/workflows/security-ci.yml @@ -0,0 +1,34 @@ +name: Security CI + +on: + pull_request: + merge_group: + +permissions: + actions: read + contents: read + security-events: write + +jobs: + security: + uses: brainpink/github-workflows/.github/workflows/security-ci.yml@main + permissions: + actions: read + contents: read + security-events: write + with: + php-version: "8.3" + node-version: "22" + secrets: + composer-auth: ${{ secrets.COMPOSER_AUTH }} + + gate: + name: Security CI + if: always() + needs: security + runs-on: ubuntu-latest + steps: + - name: Require the reusable workflow to pass + env: + RESULT: ${{ needs.security.result }} + run: test "$RESULT" = "success"