Skip to content

comment out passing tests #1548

comment out passing tests

comment out passing tests #1548

# 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