Check that dependencies don't include unmerged commits #2218
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: Branch Checks | |
on: | |
pull_request: | |
permissions: {} | |
jobs: | |
target_branch: | |
name: PR targets branch | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check that the PR targets devel | |
if: ${{ github.base_ref != 'devel' }} | |
run: exit 1 |