This repository was archived by the owner on Dec 11, 2025. It is now read-only.
chore(deps): update all non-major dependencies #1052
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: Semantic Pull Request | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - reopened | |
| - edited | |
| - synchronize | |
| merge_group: | |
| permissions: {} | |
| jobs: | |
| main: | |
| permissions: | |
| pull-requests: read # to analyze PRs (amannn/action-semantic-pull-request) | |
| statuses: write # to mark status of analyzed PR (amannn/action-semantic-pull-request) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| name: Semantic Pull Request | |
| steps: | |
| - name: Validate PR title | |
| uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3 | |
| if: ${{ github.event_name == 'pull_request_target' }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| chore | |
| refactor | |
| docs | |
| test | |
| ci | |
| build | |
| infra | |
| revert | |
| release |