Skip to content

#1017: Implemented a GH workflow(s) which validates correct target branch of PR #5

#1017: Implemented a GH workflow(s) which validates correct target branch of PR

#1017: Implemented a GH workflow(s) which validates correct target branch of PR #5

Workflow file for this run

name: Validate PR
on:
pull_request:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Check master
if: ${{github.base_ref == 'master' && github.base_ref != 'develop'}}
run: echo You must not merge to master && exit 1