Bump package:vm_service to ^12.0.0 #1527
Workflow file for this run
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
# A CI workflow to remind the contributor to add the 'run-dcm-workflow' label. | |
name: DCM Label Reminder | |
on: | |
pull_request: | |
types: [synchronize, opened, reopened, labeled, unlabeled] | |
branches: | |
- master | |
paths: | |
- "**/*.dart" | |
- "!packages/devtools_app/lib/devtools.dart" | |
jobs: | |
dcm-label-reminder: | |
if: ${{ !contains(github.event.*.labels.*.name, 'run-dcm-workflow') }} | |
name: Prevent submission | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label reminder | |
run: | | |
echo "::error Please add the 'run-dcm-workflow' label to run DCM checks." | |
exit 1 |