Skip to content

Commit 0c088da

Browse files
workflow: Mark issues/PRs as stale
After a year of inactivity, mark issues and PRs as stale to help with triaging. Runs only weekly and acts on very few items to reduce flooding developers.
1 parent 99be5f4 commit 0c088da

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/stale.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# SPDX-FileCopyrightText: 2025 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH, Darmstadt, Germany
2+
#
3+
# SPDX-License-Identifier: CC0-1.0
4+
5+
name: Mark stale issues and PRs
6+
7+
on:
8+
schedule:
9+
- cron: '0 2 * * 1' # At 02:00 on Monday
10+
11+
permissions:
12+
issues: write
13+
pull-requests: write
14+
15+
jobs:
16+
stale:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/stale@v9
20+
with:
21+
days-before-stale: 365
22+
days-before-close: -1
23+
ascending: true
24+
operations-per-run: 2

0 commit comments

Comments
 (0)