nhrpd: fix passphrase handling, add topotest for resolution request #7704
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 |