summaryrefslogtreecommitdiff
path: root/.github/workflows/stale.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/stale.yml')
-rw-r--r--.github/workflows/stale.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 0000000..1ad2c3a
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,31 @@
+name: 'Close Stale'
+
+on:
+ schedule:
+ - cron: '0 0 * * 1'
+
+jobs:
+ stale:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Close Stale Issues
+ uses: actions/stale@v3
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ stale-issue-message: |
+ Hello! :wave:
+
+ This issue is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the issue will be closed in a few days.
+
+ Thanks.
+ stale-pr-message: |
+ Hello! :wave:
+
+ This pull request is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the pull request will be closed in a few days.
+
+ Thanks.
+ stale-issue-label: 'status:stale'
+ stale-pr-label: 'status:stale'
+ only-labels: 'status:more info needed'
+ days-before-stale: 30
+ days-before-close: 14