Skip to content

Formatting updates for foundry from v0.2.0 to v0.3.0 #1495

Formatting updates for foundry from v0.2.0 to v0.3.0

Formatting updates for foundry from v0.2.0 to v0.3.0 #1495

name: CI
on:
workflow_dispatch:
pull_request:
jobs:
base_branch_check:
name: Pull request base branch check
runs-on: ubuntu-latest
steps:
- name: Check the pull request base branch
run: |
if [[ "$GITHUB_BASE_REF" == "main" ]] && [[ "$GITHUB_HEAD_REF" != "develop" ]] && [[ "$GITHUB_HEAD_REF" != hotfix* ]]; then
echo -e '\x1b[31mPull requests targeting the main branch must be from the develop branch or a branch name starting with "hotfix".\x1b[0m'
exit 1
fi