2022-10-12 04:46:25 -07:00
|
|
|
name: Test Pull Request Semantics
|
2022-09-14 01:50:42 -07:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types:
|
|
|
|
- opened
|
|
|
|
- edited
|
|
|
|
- synchronize
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check-pr-title:
|
|
|
|
runs-on: ubuntu-latest
|
2022-10-12 04:46:25 -07:00
|
|
|
permissions:
|
|
|
|
checks: write
|
|
|
|
pull-requests: read
|
|
|
|
contents: read
|
2022-09-14 01:50:42 -07:00
|
|
|
steps:
|
2022-10-12 04:46:25 -07:00
|
|
|
- uses: amannn/action-semantic-pull-request@v4
|
2022-09-14 01:50:42 -07:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2022-10-12 04:46:25 -07:00
|
|
|
# https://www.notion.so/n8n/Release-Process-fce65faea3d5403a85210f7e7a60d0f8
|
|
|
|
types: |
|
|
|
|
feat
|
|
|
|
fix
|
|
|
|
perf
|
|
|
|
test
|
|
|
|
docs
|
|
|
|
refactor
|
|
|
|
build
|
|
|
|
ci
|
|
|
|
requireScope: false
|