-
Notifications
You must be signed in to change notification settings - Fork 2
22 lines (22 loc) · 1.05 KB
/
check-pr-base.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Check PR Base
on:
pull_request:
types: [opened, edited]
jobs:
check-pr-base:
runs-on: ubuntu-latest
steps:
- name: Reject PR due to incorrect base
if: ( !(github.base_ref == 'master' && github.head_ref == 'dev') && github.base_ref != 'dev') && (github.event.action == 'opened' || (github.event.action == 'edited' && github.event.changes.base.ref))
uses: andrewmusgrave/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
event: REQUEST_CHANGES
body: 'Please change your PR base to dev branch.'
- name: Approve PR because it's based against dev branch
if: ((github.base_ref == 'master' && github.head_ref == 'dev') || github.base_ref == 'dev') && github.event.changes.base && github.event.changes.base.ref.from != 'dev'
uses: andrewmusgrave/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
event: APPROVE
body: 'Your PR is based against the dev branch. Looks good.'