Skip to content

chore(deps): lock file maintenance #8917

chore(deps): lock file maintenance

chore(deps): lock file maintenance #8917

Workflow file for this run

name: Lint PR title
on:
pull_request:
types:
- edited
- opened
- ready_for_review
- synchronize
merge_group:
permissions:
contents: read
jobs:
lint-pr-title:
permissions:
contents: read
pull-requests: read
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- id: lint-pr-title
name: Lint PR title
uses: ./actions/lint-pr-title
# This is an integration test ensuring that we don't regress absolute path
# support
- name: Copy lint-pr-title config to temp dir
run: |
cp actions/lint-pr-title/commitlint.config.js "${{ runner.temp }}/commitlint.config.js"
- id: lint-pr-title-separate-config
name: Lint PR title with separate config
uses: ./actions/lint-pr-title
with:
config-path: "${{ runner.temp }}/commitlint.config.js"