1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-12 13:28:33 +00:00

CI - disallow PRs to master from any branch but dev

This commit is contained in:
Diogo Trindade 2023-09-10 15:19:12 +01:00
parent d96581f11c
commit d57e90956f

17
.github/workflows/pr-branch.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Check pull request branch
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
jobs:
check-branches:
runs-on: ubuntu-latest
steps:
- name: Check branches
run: |
if [ ${{ github.head_ref }} != "development" ] && [ ${{ github.base_ref }} == "master" ]; then
echo "Merge requests to master are only allowed from development."
exit 1
fi