Sha256: 9e64a744bb2b7cc03a282efe0731a1ea87f10296448a5d841f95992aff3112f0
Contents?: true
Size: 857 Bytes
Versions: 2
Compression:
Stored size: 857 Bytes
Contents
name: "Close stale issues and PRs" on: schedule: - cron: "30 1 * * *" # At 01:30 - https://crontab.guru/#30_1_*_*_* workflow_dispatch: {} jobs: stale: runs-on: ubuntu-latest permissions: issues: write pull-requests: write steps: - uses: actions/stale@v8 with: stale-issue-message: This issue is now marked as stale because it hasn't seen activity for a while. Add a comment or it will be closed soon. stale-pr-message: This PR is now marked as stale because it hasn't seen activity for a while. Add a comment or it will be closed soon. close-issue-message: This issue was closed because it hasn't seen activity for a while. close-pr-message: This PR was closed because it hasn't seen activity for a while. days-before-stale: 60 days-before-close: 7
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
shoryuken-6.1.1 | .github/workflows/stale.yml |
shoryuken-6.1.0 | .github/workflows/stale.yml |