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

Merge pull request #818 from Artemis-RGB/feature/disallow-pr-master

CI - disallow PRs to master from any branch but dev
This commit is contained in:
RobertBeekman 2023-09-10 17:14:57 +02:00 committed by GitHub
commit bd723dfc1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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