1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-20 09:27:44 +03:00

ci: PR title/description change should not re-trigger the build-lint-test workflow (#4100)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2022-09-14 10:50:42 +02:00 committed by GitHub
parent 43c9f019bd
commit fd9b5f6b2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 32 deletions

32
.github/workflows/check-pr-title.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: Test Pull Request Semantics
on:
pull_request:
types:
- opened
- edited
- synchronize
jobs:
check-pr-title:
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: read
contents: read
steps:
- uses: amannn/action-semantic-pull-request@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# https://www.notion.so/n8n/Release-Process-fce65faea3d5403a85210f7e7a60d0f8
types: |
feat
fix
perf
test
docs
refactor
build
ci
requireScope: false

View File

@ -1,38 +1,8 @@
name: Test Pull Requests
on:
pull_request:
types:
- opened
- edited
- synchronize
branches:
- master
on: [pull_request]
jobs:
check-pr-title:
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: read
contents: read
steps:
- uses: amannn/action-semantic-pull-request@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# https://www.notion.so/n8n/Release-Process-fce65faea3d5403a85210f7e7a60d0f8
types: |
feat
fix
perf
test
docs
refactor
build
ci
requireScope: false
build:
runs-on: ubuntu-latest
@ -57,4 +27,3 @@ jobs:
npm run lint
env:
CI: true