Skip to content

Commit

Permalink
Merge branch 'stale-action'
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Jul 17, 2024
2 parents b38f156 + 870b3f7 commit 766d62b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "close-stale-issues-and-prs"
on:
schedule:
- cron: "30 1 * * *"
workflow_dispatch:

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 90
stale-issue-message: ""
stale-pr-message: ""
stale-issue-label: "stale"
stale-pr-label: "stale"
debug-only: true
exempt-all-assignees: true

0 comments on commit 766d62b

Please sign in to comment.