fix: improve sidebar animations #165
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: Enforce PR base branch | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| jobs: | |
| check-branch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Fail if PR targets main | |
| if: github.event.pull_request.base.ref == 'main' | |
| run: | | |
| echo "PRs must target dev, not main." | |
| exit 1 |