feat(frontend): redesign UI and self-host OFL fonts #2
Workflow file for this run
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: Lint PR title | |
| # Rejects PR titles that don't follow Conventional Commits format. The | |
| # title is what release-please reads (under squash-merge) to compute the | |
| # next version bump, so a wrong/missing prefix would silently miss a | |
| # release. This check turns that silent failure into a visible block. | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| chore | |
| refactor | |
| test | |
| build | |
| ci | |
| perf | |
| style | |
| revert | |
| requireScope: false | |
| # Subject can be lowercase (matches existing repo convention). | |
| # No regex constraint on subject content. | |
| validateSingleCommit: false |