[No QA] Docs updates for E/A#97177 Personal Karma web-only, disabled in mobile app #200938
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: PR Reviewer Checklist | |
| on: pull_request_review | |
| jobs: | |
| # Note: PHP specifically looks for the name of this job, "checklist", so if the name of the job is changed, | |
| # then you also need to go into PHP and update the name of this job in the GH_JOB_NAME_CHECKLIST constant | |
| checklist: | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| if: github.actor != 'OSBotify' && github.actor != 'imgbot[bot]' | |
| steps: | |
| - uses: useblacksmith/checkout@1c9394c220d293645707b625ba9d79685f093a8f # v1 | |
| - name: Filter paths | |
| uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1 | |
| id: filter | |
| with: | |
| predicate-quantifier: 'every' | |
| filters: | | |
| should_run: | |
| - '**' | |
| - '!docs/**/*.md' | |
| - '!docs/**/*.csv' | |
| - name: reviewerChecklist.js | |
| if: steps.filter.outputs.should_run == 'true' | |
| uses: ./.github/actions/javascript/reviewerChecklist | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| OS_BOTIFY_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }} |