Bump tim-actions/commit-message-checker-with-regex from e16b08b1a7f5cafeb1f8167de05bf1d40239eb5d to 094fc16ff83d04e2ec73edb5eaf6aa267db33791 #1691
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 |