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 21:08:40 +0300
committerGitHub <noreply@github.com>2022-05-05 21:08:40 +0300
commitc8f2e54679d48e1a496775aa8832a0bf50bf52d8 (patch)
tree6a00ffc25b5b62d1df9a05cc877aa1004b8dffd7 /.github
parentf5428c9f3bf4117e65732862b01dee0565d978f3 (diff)
Update no-response.yml (#7424)
Diffstat (limited to '.github')
-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 }}