mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 10:05:08 +01:00
27 lines
778 B
YAML
27 lines
778 B
YAML
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.4
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
rules: |
|
|
[
|
|
{
|
|
"type": "body",
|
|
"regex": ".*DELETE THIS SECTION IF YOU HAVE READ AND ACKNOWLEDGED IT.*",
|
|
"message": "The acknowledgment section was not removed."
|
|
},
|
|
{
|
|
"type": "body",
|
|
"regex": ".*\\* (Tachiyomi version|Android version|Device): \\?.*",
|
|
"message": "Requested information in the template was not filled out."
|
|
}
|
|
]
|