Skip to content

Commit

Permalink
Create stale_issues.yml (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-schlipf committed May 17, 2023
1 parent 4ae34d4 commit cac3d56
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/stale_issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Close inactive issues
on:
schedule:
- cron: "30 1 * * *"

jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
days-before-issue-stale: 300
days-before-issue-close: 65
stale-issue-label: "stale"
stale-issue-message: "We consider issues as stale if there has been no activity in them for 10 months."
close-issue-message: "This issue was closed after 1 year of inactivity."
exempt-issue-labels: "bug,enhancement"
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit cac3d56

Please sign in to comment.