Update antivirus scan configuration instructions #53
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: Require Writer Review | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened, labeled] | |
| issue_comment: | |
| types: | |
| - created | |
| - edited | |
| concurrency: | |
| # Separate groups per event type so that issue_comment runs do not cancel | |
| # pull_request_target runs (and vice versa). The required check_run is only | |
| # produced by pull_request_target runs, so cross-event cancellation can leave | |
| # the required check stuck at "cancelled" even though policy ran successfully. | |
| group: require-writer-review-${{ github.event.pull_request.number || github.event.issue.number }}-${{ github.event_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| require-writer-review: | |
| # Skip noise from unrelated label events. Only react to labeled events when | |
| # the label is one this workflow actually gates on. All other event types | |
| # (opened, synchronize, reopened, issue_comment) always proceed. | |
| if: >- | |
| (github.repository_owner == 'MicrosoftDocs' || github.repository_owner == 'microsoftgraph') | |
| && ( | |
| github.event.action != 'labeled' | |
| || github.event.label.name == 'qualifies-for-auto-merge' | |
| || github.event.label.name == 'blocked-qualifies-for-auto-merge' | |
| ) | |
| uses: MicrosoftDocs/defender-docs/.github/workflows/MSecD-Shared-RequireWriterReview.yml@workflows-test | |
| secrets: inherit |