fix(deps): update dependency php to >=8.5.9 #28
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 | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| title: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Enforce Conventional Commits on the PR title. Because PRs are | |
| # squash-merged, the title becomes the commit subject on main, which | |
| # release-please parses to decide the version bump and changelog entry. | |
| - uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |