mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-03 13:14:28 +03:00
Simplify config for issue-manager.yml
This commit is contained in:
parent
4a63cecebc
commit
031f4efbd0
46
.github/workflows/issue-manager.yml
vendored
46
.github/workflows/issue-manager.yml
vendored
|
@ -1,21 +1,12 @@
|
|||
# Automatically close issues that have a keyword mark (an HTML comment)
|
||||
# in the last comment in the issue, by a group of predefined users, after a custom delay.
|
||||
# Automatically close issues or pull requests that have a label, after a custom delay, if no one replies.
|
||||
# https://github.com/tiangolo/issue-manager
|
||||
|
||||
# Default config:
|
||||
# <!-- issue-manager: answered -->
|
||||
# Wait 10 days and comment: "Assuming the original issue was solved, it will be automatically closed now"
|
||||
|
||||
# Extra config:
|
||||
# '<!-- issue-manager: waiting -->'
|
||||
# Wait 10 days and comment: "Automatically closing. To re-open, please provide the additional information requested"
|
||||
|
||||
name: Issue Manager
|
||||
|
||||
on:
|
||||
# Every day at midnight
|
||||
# Every day
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
- cron: "12 0 * * *"
|
||||
# Manual trigger
|
||||
workflow_dispatch:
|
||||
|
||||
|
@ -30,33 +21,12 @@ jobs:
|
|||
config: >
|
||||
{
|
||||
"answered": {
|
||||
"delay": 864000,
|
||||
"message": "Assuming the original issue was solved, it will be automatically closed now.",
|
||||
"users": [
|
||||
"pydanny",
|
||||
"audreyr",
|
||||
"luzfcb",
|
||||
"theskumar",
|
||||
"jayfk",
|
||||
"burhan",
|
||||
"webyneter",
|
||||
"browniebroke",
|
||||
"sfdye"
|
||||
]
|
||||
"message": "Assuming the question was answered, this will be automatically closed now."
|
||||
},
|
||||
"solved": {
|
||||
"message": "Assuming the original issue was solved, it will be automatically closed now."
|
||||
},
|
||||
"waiting": {
|
||||
"delay": 864000,
|
||||
"message": "Automatically closing. To re-open, please provide the additional information requested.",
|
||||
"users": [
|
||||
"pydanny",
|
||||
"audreyr",
|
||||
"luzfcb",
|
||||
"theskumar",
|
||||
"jayfk",
|
||||
"burhan",
|
||||
"webyneter",
|
||||
"browniebroke",
|
||||
"sfdye"
|
||||
]
|
||||
"message": "Automatically closing after waiting for additional info. To re-open, please provide the additional information requested."
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user