Skip to content

Bump ol from 8.2.0 to 10.2.0 #1528

Bump ol from 8.2.0 to 10.2.0

Bump ol from 8.2.0 to 10.2.0 #1528

Workflow file for this run

name: "PR Base Branch Check"
on:
pull_request:
types: [opened, edited, synchronize]
jobs:
check-base-branch:
runs-on: ubuntu-latest
steps:
- name: Check valid base branch
run: |
BASE_BRANCH="${{ github.event.pull_request.base.label }}"
SOURCE_BRANCH="${{ github.event.pull_request.head.label }}"
echo "Attempting to merge ${SOURCE_BRANCH} into ${BASE_BRANCH}"
if [ "$BASE_BRANCH" = "DEFRA:master" ]; then
echo base is master
if [[ "$SOURCE_BRANCH" != "DEFRA:release/"* ]] && [[ "$SOURCE_BRANCH" != "DEFRA:hotfix/"* ]]; then
echo Source is neither a "release" nor a "hotfix" branch, so cannot be merged to master.
exit 1
fi
fi
echo "Branches ok to be merged"