Skip to content

Added yaml config to close stale issues #2

Added yaml config to close stale issues

Added yaml config to close stale issues #2

Workflow file for this run

name: Close inactive issues
on:
schedule:
- cron: "30 1 * * *"
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/[email protected]
with:
days-before-issue-stale: 30
days-before-issue-close: 14
stale-issue-label: "stale"
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity. It will be closed in 14 days."
close-issue-message: "This issue was closed automatically because it has been inactive for 14 days since being marked as stale. Please reopen if needed."
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}