Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit 9fdfd26

Browse files
authored
Merge pull request #53 from unsignedapps/ci/stale-issues
Added workflow to close stale issues
2 parents 07c4038 + c5c164a commit 9fdfd26

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/stale-issues.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Close stale issues and PRs
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v4
11+
with:
12+
stale-issue-message: This issue has been marked stale as it has not been updated in 60 days. It will be closed in one week. It can be re-opened at any time.
13+
stale-pr-message: This PR has been marked stale as it has not been updated in 60 days. It will be closed in one week. It can be re-opened at any time.

0 commit comments

Comments
 (0)