chore(deps): Bump next from 16.3.2 to 16.3.4 #91
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 Title | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| pr-title: | |
| name: pr-title | |
| runs-on: ubuntu-latest | |
| steps: | |
| # PRs are squash-merged, so the PR title becomes the commit message on main | |
| # and is what release-please reads to compute version bumps (RELEASING.md). | |
| - name: Validate PR title is a conventional commit | |
| uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |