2020-04-08 19:36:36 -04:00
|
|
|
name: Issue closer
|
2020-10-03 12:58:22 -04:00
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [opened, edited, reopened]
|
2020-08-12 22:38:13 -04:00
|
|
|
|
2020-04-08 19:36:36 -04:00
|
|
|
jobs:
|
|
|
|
autoclose:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-02-12 16:26:48 -05:00
|
|
|
- name: Autoclose issues
|
2021-05-19 22:17:21 -04:00
|
|
|
uses: arkon/issue-closer-action@v3.4
|
2021-02-12 16:26:48 -05:00
|
|
|
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."
|
|
|
|
}
|
|
|
|
]
|