diff options
author | ByteHamster <info@bytehamster.com> | 2022-02-07 21:58:36 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2022-02-07 21:58:36 +0100 |
commit | b589ea877c89c549b2f9d984218c2aa157b0de58 (patch) | |
tree | 35ade57a79c73ff0a8331d3e6fb899d34f1b2e4a | |
parent | 37eec9902b8a92d1cda8cdbdbe93d9254b2e4034 (diff) | |
download | antennapod-b589ea877c89c549b2f9d984218c2aa157b0de58.zip |
Send message to stale issues/PRs
-rw-r--r-- | .github/workflows/close-if-no-reply.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/close-if-no-reply.yml b/.github/workflows/close-if-no-reply.yml index c0c32843a..78e4d340a 100644 --- a/.github/workflows/close-if-no-reply.yml +++ b/.github/workflows/close-if-no-reply.yml @@ -13,13 +13,15 @@ jobs: steps: - uses: actions/stale@v4 with: - days-before-stale: 10 - days-before-close: 10 + days-before-stale: 15 + days-before-close: 15 only-labels: 'Awaiting reply' stale-issue-label: 'Still awaiting reply' stale-pr-label: 'Still awaiting reply' + stale-issue-message: "This issue will be closed when we don't get a reply within 15 days." + stale-pr-message: "This PR will be closed when we don't get a reply within 15 days." labels-to-remove-when-unstale: 'Awaiting reply' close-issue-label: "Close reason: no reply" close-pr-label: "Close reason: no reply" - close-issue-message: "This issue was closed because we didn't get a reply for 20 days." - close-pr-message: "This pr was closed because we didn't get a reply for 20 days." + close-issue-message: "This issue was closed because we didn't get a reply for 30 days." + close-pr-message: "This PR was closed because we didn't get a reply for 30 days." |