[Telemetry API] Prevent Subscriptions with different options from overwriting each other #27303
This file contains 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: PRCop | |
on: | |
pull_request: | |
types: | |
- labeled | |
- unlabeled | |
- milestoned | |
- demilestoned | |
- opened | |
- reopened | |
- synchronize | |
- edited | |
pull_request_review_comment: | |
types: | |
- created | |
env: | |
LABELS: ${{ join( github.event.pull_request.labels.*.name, ' ' ) }} | |
jobs: | |
prcop: | |
runs-on: ubuntu-latest | |
name: Template Check | |
steps: | |
- name: Linting Pull Request | |
uses: makaroni4/prcop@v1.0.35 | |
with: | |
config-file: '.github/workflows/prcop-config.json' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
check-type-label: | |
name: Check type Label | |
runs-on: ubuntu-latest | |
steps: | |
- if: contains( env.LABELS, 'type:' ) == false | |
run: exit 1 | |
check-milestone: | |
name: Check Milestone | |
runs-on: ubuntu-latest | |
steps: | |
- if: github.event.pull_request.milestone == null && contains( env.LABELS, 'no milestone' ) == false | |
run: exit 1 |