Skip to content

feat: add workflow to restrict merges to master #1

feat: add workflow to restrict merges to master

feat: add workflow to restrict merges to master #1

name: Restrict merges to master
on:
pull_request:
branches:
- master
jobs:
check-branch-master:
runs-on: ubuntu-latest
steps:
- name: Check if the source branch is preprod
run: |
if [ "${{ github.event.pull_request.head.ref }}" != "preprod" ]; then
echo "Pull requests to master must come from preprod branch."
exit 1
fi