-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add github action to check PR base branch
Reject any PRs not based against dev branch. This should hopefully help us avoid accidentally merging PRs against master.
- Loading branch information
1 parent
d3ba8ca
commit 90e8ffd
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 != '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 == '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.' |