blob: 8679c0d4324cbce4226761fef11bf73c74395e03 [file] [log] [blame]
# 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]
paths:
- '**/*.dart'
jobs:
changelog-reminder:
if: ${{ !contains(github.event.*.labels.*.name, 'run-dcm-workflow') }}
name: Prevent submission
runs-on: ubuntu-latest
steps:
- name: Label reminder
run: |
echo "Please add the 'run-dcm-workflow' label to run DCM checks."
exit 1