mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2024-12-25 08:11:50 +01:00
add issue closer
This commit is contained in:
parent
cf19f3626b
commit
2f7df73a37
32
.github/workflows/issue_closer.yml
vendored
Normal file
32
.github/workflows/issue_closer.yml
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
name: Issue closer
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened, edited, reopened]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
autoclose:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Autoclose issues
|
||||||
|
uses: arkon/issue-closer-action@v3.0
|
||||||
|
with:
|
||||||
|
repo-token: ${{ github.token }}
|
||||||
|
rules: |
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"type": "title",
|
||||||
|
"regex": ".*<short description>*",
|
||||||
|
"message": "You did not fill out the description in the title"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "body",
|
||||||
|
"regex": ".*DELETE THIS SECTION IF YOU HAVE READ AND ACKNOWLEDGED IT.*",
|
||||||
|
"message": "The acknowledgment section was not removed"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "body",
|
||||||
|
"regex": ".*\\* (Tachidesk version|Server Operating System|Server JVM version|Client Operating System|Client Web Browser): .*\\(Example:",
|
||||||
|
"message": "The requested information was not filled out"
|
||||||
|
}
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user