chore(deps): update actions/dependency-review-action action to v4.5.0 #363
This file contains 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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
name: "Semantic Pull Request" | |
on: # yamllint disable-line rule:truthy | |
pull_request_target: | |
types: | |
- "opened" | |
- "edited" | |
- "synchronize" | |
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" | |
name: "Semantic Pull Request" | |
steps: | |
- name: "Harden Runner" | |
uses: "step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7" # v2.10.1 | |
with: | |
egress-policy: "audit" | |
- name: "Validate PR title" | |
uses: "amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017" # v5.5.3 | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
with: | |
types: | | |
feat | |
fix | |
chore | |
refactor | |
docs | |
test | |
ci | |
build | |
infra | |
revert |