Skip to content

Label inactive issues and pull requests #7

Label inactive issues and pull requests

Label inactive issues and pull requests #7

name: Label inactive issues and pull requests
on:
schedule:
- cron: "12 2 * * *"
jobs:
label-stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
start-date: 2025-01-01
exempt-issue-labels: 'no-automation,"Type: Epic"'
exempt-assignees: jimchamp,mekarpeles,cdrini,scottbarnes,raybb,seabelis,hornc
days-before-close: -1 # signifies that neither issues nor pull requests are to be closed
days-before-issue-stale: 14
days-before-pr-stale: -1
include-only-assigned: true
stale-issue-label: "Needs: Review Assignee"
stale-issue-message: 'This issue has been marked "Needs: Review Assignee" since there have been no updates within the past two weeks'
repo-token: ${{ secrets.GITHUB_TOKEN }}