From 4908ff133678a16f6137e96ff7ae5c205298371d Mon Sep 17 00:00:00 2001 From: baron unread Date: Fri, 17 Jul 2026 01:25:47 +0200 Subject: [PATCH] ci: add React Doctor GitHub Action Reports issues introduced by each pull request via a sticky summary comment and inline review comments on changed lines. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/react-doctor.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/react-doctor.yml diff --git a/.github/workflows/react-doctor.yml b/.github/workflows/react-doctor.yml new file mode 100644 index 0000000..a54ea68 --- /dev/null +++ b/.github/workflows/react-doctor.yml @@ -0,0 +1,26 @@ +name: React Doctor + +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + push: + branches: [main] + +permissions: + contents: read + pull-requests: write + issues: write + statuses: write + +concurrency: + group: react-doctor-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +jobs: + react-doctor: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + with: + fetch-depth: 0 + - uses: millionco/react-doctor@v2