Skip to content

chore(deps): update actions/download-artifact action to v4 (17.x) #3517

chore(deps): update actions/download-artifact action to v4 (17.x)

chore(deps): update actions/download-artifact action to v4 (17.x) #3517

Workflow file for this run

name: PR Title Linter
on:
pull_request:
types: [opened, edited, reopened, unlocked]
permissions: read-all
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: "Yarn: Install"
uses: ./.github/actions/yarn-install
- name: "Lint: Pull request title"
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: echo "$PR_TITLE" | yarn commitlint
- name: "Warning: Pull request title must match patterns defined in CONTRIBUTING.md in section Commit Message Guidelines!"
if: ${{ failure() }}
run: echo "Pull request title must match patterns defined in CONTRIBUTING.md in section Commit Message Guidelines!"