mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
ci: Fix the PR-title validation action (no-changelog) (#5576)
This commit is contained in:
parent
20c4919513
commit
3d82614de2
12
.github/workflows/check-pr-title.yml
vendored
12
.github/workflows/check-pr-title.yml
vendored
|
@ -18,8 +18,18 @@ jobs:
|
|||
- name: Check out branch
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- uses: pnpm/action-setup@v2.2.4
|
||||
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16.x
|
||||
cache: 'pnpm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
|
||||
- name: Validate PR title
|
||||
id: validate_pr_title
|
||||
uses: ivov/validate-n8n-pull-request-title@v1
|
||||
uses: n8n-io/validate-n8n-pull-request-title@v1.1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
Loading…
Reference in a new issue