Skip to content

StaleBot

StaleBot #86

Workflow file for this run

name: StaleBot
on:
schedule:
- cron: '0 12 * * *'
jobs:
StaleBot:
runs-on: ubuntu-latest
permissions:
issues: write
discussions: write
pull-requests: write
if: github.repository == 'aws/karpenter'
name: Stale issue bot
steps:
- uses: actions/stale@v5.0.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been inactive for 14 days. StaleBot will close this stale issue after 14 days.'
exempt-issue-labels: 'bug,chore,feature,documentation,testing,operational-excellence'
stale-issue-label: 'lifecycle/stale'
close-issue-label: 'lifecycle/closed'
stale-pr-message: 'This PR has been inactive for 14 days. StaleBot will close this stale PR after 14 days.'
stale-pr-label: 'lifecycle/stale'
close-pr-label: 'lifecycle/closed'
days-before-stale: 14
days-before-close: 14
operations-per-run: 300