Fix issue manager workflow

This commit is contained in:
Daniel 2022-02-11 17:42:02 +01:00
parent fcb7c0b52f
commit 54c3105f18

View file

@ -22,6 +22,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
config: > config: >
{ {
"$schema": "https://raw.githubusercontent.com/tiangolo/issue-manager/master/schema.json",
"waiting for input": { "waiting for input": {
"delay": 2592000, "delay": 2592000,
"message": "Auto-closing this issue after waiting for input for a month. If anyone finds the time to provide the requested information, please re-open the issue and we will continue handling it.", "message": "Auto-closing this issue after waiting for input for a month. If anyone finds the time to provide the requested information, please re-open the issue and we will continue handling it.",
@ -35,9 +36,15 @@ jobs:
"remove_label_on_close": false "remove_label_on_close": false
}, },
"waiting for release": { "waiting for release": {
"remove_label_on_comment": true "delay": 315360000,
"message": "That was 10 years ago, I think we can close this now.",
"remove_label_on_comment": true,
"remove_label_on_close": false
}, },
"waiting for resources": { "waiting for resources": {
"remove_label_on_comment": true "delay": 315360000,
"message": "That was 10 years ago, I think we can close this now.",
"remove_label_on_comment": true,
"remove_label_on_close": false
} }
} }