1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-06 17:47:46 +03:00
n8n/.github/workflows/check-pr-title.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
694 B
YAML
Raw Normal View History

name: Check PR title
on:
pull_request:
types:
- opened
- edited
- synchronize
branches:
- 'master'
jobs:
check-pr-title:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out branch
uses: actions/checkout@v4.1.1
- run: corepack enable
- uses: actions/setup-node@v4.0.2
with:
node-version: 20.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Validate PR title
id: validate_pr_title
uses: n8n-io/validate-n8n-pull-request-title@v2.2.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}