diff --git a/.github/no-response.yml b/.github/no-response.yml deleted file mode 100644 index 8618e88c..00000000 --- a/.github/no-response.yml +++ /dev/null @@ -1,6 +0,0 @@ -daysUntilClose: 14 -responseRequiredLabel: "status/waiting on feedback" -closeComment: > - This issue has been automatically closed because there has been no response - after requesting feedback. Please feel free to re-open this issue if the - scenario still exists and provide a comment with more information. \ No newline at end of file diff --git a/.github/workflows/stale-check.yml b/.github/workflows/stale-check.yml new file mode 100644 index 00000000..ed0323d3 --- /dev/null +++ b/.github/workflows/stale-check.yml @@ -0,0 +1,24 @@ +name: Stale Check + +on: + issue_comment: + schedule: + - cron: 0 2 * * * + +jobs: + check: + runs-on: ubuntu-20.04 + permissions: + issues: write + pull-requests: write + steps: + - name: Process Stale Issues + uses: actions/stale@v4.0.0 + with: + stale-issue-message: > + This issue is stale because it has been open 30 days with no activity. + Please add a comment describing the reason to keep this issue open. + days-before-stale: 30 + days-before-close: 5 + exempt-issue-labels: 'enhancement,keep' +