Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Galloway <jongalloway@gmail.com>2022-05-05 01:24:32 +0300
committerGitHub <noreply@github.com>2022-05-05 01:24:32 +0300
commit72cd9229fea9ffec5e5786745f035d7988e569ba (patch)
treea04996bed3ed49e94bcb13f3db6dbef09512a712
parentecdcded8b9be1071b5efb2e985d327da3eafd898 (diff)
Update no-response.ymljongalloway-noresponse
-rw-r--r--.github/workflows/no-response.yml18
1 files changed, 11 insertions, 7 deletions
diff --git a/.github/workflows/no-response.yml b/.github/workflows/no-response.yml
index 4c414f61..52ac3012 100644
--- a/.github/workflows/no-response.yml
+++ b/.github/workflows/no-response.yml
@@ -15,12 +15,16 @@ on:
jobs:
noResponse:
runs-on: ubuntu-latest
+ permissions:
+ issues: write
steps:
- - uses: lee-dohm/no-response@v0.5.0
+ - uses: actions/stale@v5
with:
- token: ${{ github.token }}
- daysUntilClose: 7 # Number of days of inactivity before an Issue is closed for lack of response
- responseRequiredLabel: "needs-more-info" # Label indicating that a response from the original author is required
- closeComment: >
- This issue has been automatically closed due to no response from the original author.
- Please feel free to reopen it if you have more information that can help us investigate the issue further.
+ days-before-issue-stale: 7
+ days-before-issue-close: 3
+ only-labels: "needs-more-info"
+ stale-issue-message: "This issue is stale because there has been no request to a response for more information for 7 days."
+ close-issue-message: "This issue was closed because there was no response to a request for more information for 10 days."
+ days-before-pr-stale: -1
+ days-before-pr-close: -1
+ repo-token: ${{ secrets.GITHUB_TOKEN }}