feat: Add support for variant branches in Entry and Query classes #254
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Check Branch' | |
| on: | |
| pull_request: | |
| jobs: | |
| check_branch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # PRs into master are no longer blocked here based on their source branch. | |
| # Direct merges into master (i.e. without going through PR review) are expected | |
| # to be prevented by GitHub branch protection rules on master, not by this CI check. | |
| - name: Branch check (informational only) | |
| run: | | |
| echo "This workflow no longer restricts which branch a PR into master can come from." | |
| echo "Base branch : ${{ github.base_ref }}" | |
| echo "Head branch : ${{ github.head_ref }}" | |
| echo "Direct pushes/merges to master should be prevented via branch protection rules, not this workflow." |