Add "DNM (manifest)" to the "do not merge" labels. This is meant to be a DNM controlled by the manifest action specific, so that the normal one can be used by humans and the two are not going to fight with each other. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
22 lines
787 B
YAML
22 lines
787 B
YAML
name: Do Not Merge
|
|
|
|
on:
|
|
pull_request:
|
|
types: [synchronize, opened, reopened, labeled, unlabeled]
|
|
|
|
jobs:
|
|
do-not-merge:
|
|
name: Prevent Merging
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Check for label
|
|
if: ${{ contains(github.event.*.labels.*.name, 'DNM') ||
|
|
contains(github.event.*.labels.*.name, 'DNM (manifest)') ||
|
|
contains(github.event.*.labels.*.name, 'TSC') ||
|
|
contains(github.event.*.labels.*.name, 'Architecture Review') ||
|
|
contains(github.event.*.labels.*.name, 'dev-review') }}
|
|
run: |
|
|
echo "Pull request is labeled as 'DNM', 'TSC', 'Architecture Review' or 'dev-review'."
|
|
echo "This workflow fails so that the pull request cannot be merged."
|
|
exit 1
|