chore(deps): bump millionco/react-doctor from 736abc183ac491b4e954fc6bedec3a9a1b73d38b to 01820bb4fd4d0a4aebcd8df2b2a143a098649cb2 #39
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: React Doctor | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| concurrency: | |
| group: react-doctor-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| react-doctor: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - id: doctor | |
| uses: millionco/react-doctor@01820bb4fd4d0a4aebcd8df2b2a143a098649cb2 # v2.2.8 | |
| with: | |
| version: latest | |
| scope: ${{ github.event_name == 'pull_request' && 'changed' || 'full' }} | |
| blocking: warning | |
| comment: "false" | |
| review-comments: "true" | |
| commit-status: "false" |