My build_and_test.yml file in .github/workflows is as follows:
name: CI on: push: branches: - main - name-of-my-branch pull_request: branches: - main jobs: build: # Code to build However, when I push to any branch other than the main branch, the build doesn't trigger. Any ideas why this might be?