fix(router): update browser URL when navigating to drink detail on web #25
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: PR Lint | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| lint-pr: | |
| # Release PRs use "Release X.Y.Z" titles which are not conventional commits | |
| if: github.head_ref != 'release/next' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |