Skip to content

Apply black formatting to the codebase and add enforced status checks on PRs before merging #16

Apply black formatting to the codebase and add enforced status checks on PRs before merging

Apply black formatting to the codebase and add enforced status checks on PRs before merging #16

Workflow file for this run

name: 'Check Branch'
on:
pull_request:
jobs:
check_branch:
runs-on: ubuntu-latest
steps:
- name: Check branch
if: github.base_ref == 'main' && github.head_ref != 'dev'
run: |
echo "ERROR: You can only merge to main from dev branch."
exit 1