mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
ci: Add Github Action to enforce template to issues (#5295)
Add workflow template for enforcing issue template
This commit is contained in:
parent
3b9e65e9e0
commit
7a8b85ab11
18
.github/workflows/check-issue-template.yml
vendored
Normal file
18
.github/workflows/check-issue-template.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: Check Issue Template
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened, edited]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check-issue:
|
||||||
|
name: Check Issue Template
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Run Check Issue Template
|
||||||
|
uses: n8n-io/GH-actions-playground@v1
|
||||||
|
with:
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue