zebra: notify nht client about protocol type change #7488
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
name: Warn before merging if a "freeze" or "do not merge" label exists | |
on: | |
pull_request_target: | |
types: [synchronize, opened, reopened, labeled, unlabeled] | |
jobs: | |
freeze_warning: | |
if: ${{ contains(github.event.*.labels.*.name, 'freeze') || contains(github.event.*.labels.*.name, 'do not merge') }} | |
name: Warn before merging if a "freeze" or "do not merge" label exists | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for "freeze" label | |
run: | | |
echo "Pull request is labeled as 'freeze' or 'do not merge'" | |
echo "This workflow fails so that the pull request cannot be merged." | |
exit 1 |