mirror of https://github.com/vector-im/riot-web
Add a github action to check the base branch (#12665)
* Add a github action to check the base branch It should be very rare that we ever PR into a branch that isn't 'develop', 'staging' or a feature branch, and this will give us a failed check when stacking up PRs on top of one another until the one below it is merged. * Name workflowpull/28217/head
parent
e9abc55869
commit
0317755e9c
|
@ -0,0 +1,16 @@
|
||||||
|
name: Pull Request Base Branch
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [opened, edited, synchronize]
|
||||||
|
jobs:
|
||||||
|
check_base_branch:
|
||||||
|
name: Check PR base branch
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/github-script@v3
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
const baseBranch = context.payload.pull_request.base.ref;
|
||||||
|
if (!['develop', 'staging'].includes(baseBranch) && !baseBranch.startsWith('feat/')) {
|
||||||
|
core.setFailed(`Invalid base branch: ${baseBranch}`);
|
||||||
|
}
|
Loading…
Reference in New Issue