From 31c1e45a72368056d9fac61ee9fc395f15da5070 Mon Sep 17 00:00:00 2001 From: Somaya Date: Wed, 6 May 2020 12:32:21 -0700 Subject: [PATCH] Remove dry run (#7782) Co-authored-by: Noah Litov --- .github/workflows/close-stale-issues.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/close-stale-issues.yml b/.github/workflows/close-stale-issues.yml index f3dbedb05b3cd..b5a04b5ca5370 100644 --- a/.github/workflows/close-stale-issues.yml +++ b/.github/workflows/close-stale-issues.yml @@ -14,14 +14,14 @@ jobs: with: # Setting messages to an empty string will cause the automation to skip # that category - ancient-issue-message: This issue has not received any attention in 3 years. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. + ancient-issue-message: This issue has not received any attention in 2 years. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. stale-issue-message: This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. stale-pr-message: This PR has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. # These labels are required stale-issue-label: closing-soon exempt-issue-label: no-autoclose - stale-pr-label: pr/no-activity + stale-pr-label: closing-soon exempt-pr-label: no-autoclose response-requested-label: response-requested @@ -32,7 +32,7 @@ jobs: # Issue timing days-before-stale: 7 days-before-close: 4 - days-before-ancient: 1095 + days-before-ancient: 730 # If you don't want to mark a issue as being ancient based on a # threshold of "upvotes", you can set this here. An "upvote" is @@ -43,4 +43,4 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} # loglevel: DEBUG # Set dry-run to true to not perform label or close actions. - dry-run: true + dry-run: false