build(deps-dev): bump io.spring.javaformat:spring-javaformat-maven-plugin from 0.0.39 to 0.0.47 #15
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
| # | |
| # Copyright 2023-2026 the original author or authors. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # https://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| # | |
| name: 🤔 Lint PR | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| jobs: | |
| main: | |
| name: Validate PR title | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| fix | |
| feat | |
| refactor | |
| docs | |
| chore | |
| perf | |
| infra | |
| revert | |
| release | |
| test | |
| style | |
| build | |
| scopes: | | |
| task | |
| bug | |
| documentation | |
| duplicate | |
| enhancement | |
| good first issue | |
| help wanted | |
| question | |
| # e.g. feat(core): add new feature | |
| # if false: feat: add new feature | |
| requireScope: false | |
| disallowScopes: | | |
| [A-Z]+ | |
| # if true, the PR title must match the commit message | |
| validateSingleCommit: false | |
| # if true, the PR title must match the single commit message | |
| validateSingleCommitMatchesPrTitle: false |