Skip to content

Bump org.codehaus.groovy:groovy-all from 2.5.7 to 2.5.14 #7

Bump org.codehaus.groovy:groovy-all from 2.5.7 to 2.5.14

Bump org.codehaus.groovy:groovy-all from 2.5.7 to 2.5.14 #7

name: PR to master only from development
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check if PR branch to master is development
run: |
echo "Pull request's branch to be merged is: ${{ github.event.pull_request.head.ref }}"
if [ "${{ github.event.pull_request.head.ref }}" != "development" ]; then echo "Pull requests to master must come from the development branch!"; exit 1; fi