From 0eff98d156a4ccd7e77f46ea2814f3390465fb88 Mon Sep 17 00:00:00 2001 From: Jordan Partridge Date: Sat, 10 Jan 2026 20:38:26 -0700 Subject: [PATCH 1/2] test: add broken file to trigger actionable prompt --- app/Broken.php | 1 + 1 file changed, 1 insertion(+) create mode 100644 app/Broken.php diff --git a/app/Broken.php b/app/Broken.php new file mode 100644 index 0000000..ed05aa9 --- /dev/null +++ b/app/Broken.php @@ -0,0 +1 @@ + Date: Sat, 10 Jan 2026 20:39:50 -0700 Subject: [PATCH 2/2] fix: add GITHUB_TOKEN for actionable prompts --- .github/workflows/gate.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/gate.yml b/.github/workflows/gate.yml index c0188ae..949215b 100644 --- a/.github/workflows/gate.yml +++ b/.github/workflows/gate.yml @@ -6,6 +6,11 @@ on: pull_request: branches: [master] +permissions: + checks: write + pull-requests: write + contents: read + jobs: gate: runs-on: ubuntu-latest @@ -34,6 +39,8 @@ jobs: - name: Run Gate on itself run: php gate certify --coverage=100 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload coverage artifact if: github.event_name == 'push' && github.ref == 'refs/heads/master'