n8n/.github/workflows/check-pr-title.yml
कारतोफ्फेलस्क्रिप्ट™ 9e3e298aca
ci: Fix versions of all external Github actions (no-changelog) (#6984)
2023-08-22 11:21:16 +02:00

36 lines
720 B
YAML

name: Check PR title
on:
pull_request:
types:
- opened
- edited
- synchronize
branches:
- '**'
- '!release/*'
jobs:
check-pr-title:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out branch
uses: actions/checkout@v3.5.3
- uses: pnpm/action-setup@v2.4.0
- uses: actions/setup-node@v3.7.0
with:
node-version: 18.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@v1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}