chore(deps): bump the go-dependencies group in /integrationtests with 5 updates #252
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 Check | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| permissions: | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| conventional-commits: | |
| name: Validate PR Title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check PR title | |
| uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # Configure allowed types | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| build | |
| ci | |
| chore | |
| revert | |
| # Configure allowed scopes (optional) | |
| scopes: | | |
| provider | |
| collection | |
| module | |
| lifetime | |
| descriptor | |
| errors | |
| inout | |
| scope | |
| resolver | |
| deps | |
| docs | |
| benchmarks | |
| http | |
| chi | |
| echo | |
| fiber | |
| gin | |
| huma | |
| release | |
| security | |
| # Require scope to be provided | |
| requireScope: false | |
| # Subject requirements | |
| subjectPattern: ^(?![A-Z]).+$ | |
| subjectPatternError: | | |
| The subject "{subject}" found in the pull request title "{title}" | |
| didn't match the configured pattern. Please ensure that the subject | |
| doesn't start with an uppercase character. |