maziggy 4 месяцев назад
Родитель
Сommit
aa5ab135c7
1 измененных файлов с 17 добавлено и 0 удалено
  1. 17 0
      .github/workflows/stale.yml

+ 17 - 0
.github/workflows/stale.yml

@@ -0,0 +1,17 @@
+name: Close stale issues
+
+on:
+  schedule:
+    - cron: '0 0 * * *'  # Run daily at midnight UTC
+
+jobs:
+  stale:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/stale@v9
+        with:
+          stale-issue-message: 'This issue has been marked as stale due to inactivity. It will be closed in 7 days if there is no further activity.'
+          close-issue-message: 'Closed due to inactivity. Feel free to reopen if this is still relevant.'
+          days-before-stale: 21
+          days-before-close: 7
+          stale-issue-label: 'feedback'