mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-23 05:35:07 +02:00
👷♂️ Adds action to close incomplete issues
This commit is contained in:
parent
16e7efe0dc
commit
fcd3d5c7af
20
.github/workflows/close-incomplete-issues.yml
vendored
Normal file
20
.github/workflows/close-incomplete-issues.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# Close any issue that does not match any of the issue templates
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened, edited]
|
||||||
|
jobs:
|
||||||
|
auto_close_issues:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
- name: Automatically close issues that don't follow the issue template
|
||||||
|
uses: lucasbento/auto-close-issues@v1.0.2
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
|
closed-issues-label: '🙁 Auto-Closed'
|
||||||
|
issue-close-message: |
|
||||||
|
Hello @${issue.user.login} 👋
|
||||||
|
Unfortunately your issue does not follow the format outlined in the template, and has therefore been auto-closed.
|
||||||
|
To ensure that all relevant info is included, please either update or recreate your issue, and complete the sub-headings provided.
|
||||||
|
Thank you :)
|
Loading…
x
Reference in New Issue
Block a user