Skip to content

Remove c12 in sponge of xrb_layered model #74

Remove c12 in sponge of xrb_layered model

Remove c12 in sponge of xrb_layered model #74

Workflow file for this run

name: check PR branch
on:
pull_request:
types:
- opened
- synchronize
- reopened
- edited
jobs:
check-PR-branch:
runs-on: ubuntu-latest
steps:
- name: PRs should not target main
run: |
if [[ "${{ github.base_ref }}" == "main" ]]; then
echo 'Pull requests must not be made against main. Please target development instead.'
exit 1
fi