mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
ci: Run checklist job as a separate workflow (no-changelog) (#6645)
This commit is contained in:
parent
aecc05b787
commit
ad581566ae
22
.github/workflows/checklist.yml
vendored
Normal file
22
.github/workflows/checklist.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
name: PR Checklist
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- synchronize
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
checklist_job:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Checklist job
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
- name: Checklist
|
||||||
|
uses: wyozi/contextual-qa-checklist-action@master
|
||||||
|
with:
|
||||||
|
gh-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
comment-footer: Make sure to check off this list before asking for review.
|
12
.github/workflows/ci-pull-requests.yml
vendored
12
.github/workflows/ci-pull-requests.yml
vendored
|
@ -107,15 +107,3 @@ jobs:
|
||||||
env:
|
env:
|
||||||
ESLINT_PLUGIN_DIFF_COMMIT: ${{ github.event.pull_request.base.ref }}
|
ESLINT_PLUGIN_DIFF_COMMIT: ${{ github.event.pull_request.base.ref }}
|
||||||
run: pnpm lint
|
run: pnpm lint
|
||||||
|
|
||||||
checklist_job:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Checklist job
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
- name: Checklist
|
|
||||||
uses: wyozi/contextual-qa-checklist-action@master
|
|
||||||
with:
|
|
||||||
gh-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
comment-footer: Make sure to check off this list before asking for review.
|
|
||||||
|
|
Loading…
Reference in a new issue