summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormbkma <[email protected]>2026-03-07 11:02:05 +0100
committermbkma <[email protected]>2026-03-07 11:02:05 +0100
commit6a000e56b295528915c8df673412a33beeaf6099 (patch)
tree33ea2af516fa6ac1f68340014f7c29d1f34f6f94
parent2445887b3947eb99bd4d430b4f1dff9ed2467d73 (diff)
downloadcaja-stale-issues.tar.bz2
caja-stale-issues.tar.xz
ci: add stale-issues.ymlstale-issues
-rw-r--r--.github/workflows/stale-issues.yml44
1 files changed, 44 insertions, 0 deletions
diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml
new file mode 100644
index 00000000..38e33020
--- /dev/null
+++ b/.github/workflows/stale-issues.yml
@@ -0,0 +1,44 @@
+name: Stale issue management
+
+on:
+ schedule:
+ - cron: "0 2 * * *" # run daily
+ workflow_dispatch:
+
+jobs:
+ stale:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Mark stale issues
+ uses: actions/stale@v9
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+
+ # inactivity thresholds
+ days-before-stale: 90
+ days-before-close: 30
+
+ # labels
+ stale-issue-label: stale
+ stale-pr-label: stale
+
+ # messages
+ stale-issue-message: >
+ This issue has been automatically marked as stale because it has not had
+ recent activity. If this issue still occurs with the latest version of MATE,
+ please comment here with updated information.
+
+ Otherwise, this issue will be closed in 30 days.
+
+ close-issue-message: >
+ This issue has been closed due to inactivity.
+ If the problem persists in the latest version of MATE,
+ please feel free to open a new issue.
+
+ # do not mark issues with these labels
+ exempt-issue-labels: |
+ pinned
+ security
+ regression
+ good first issue \ No newline at end of file