github.com/honeycombio/honeytail@v1.9.0/.github/workflows/stale.yml (about)

     1  name: 'Close stale issues and PRs'
     2  on:
     3    schedule:
     4      - cron: '30 1 * * *'
     5  
     6  jobs:
     7    stale:
     8      name: 'Close stale issues and PRs'
     9      runs-on: ubuntu-latest
    10      permissions:
    11        issues: write
    12        pull-requests: write
    13  
    14      steps:
    15        - uses: actions/stale@v4
    16          with:
    17            start-date: '2021-09-01T00:00:00Z'
    18            stale-issue-message: 'Marking this issue as stale because it has been open 14 days with no activity. Please add a comment if this is still an ongoing issue; otherwise this issue will be automatically closed in 7 days.'
    19            stale-pr-message: 'Marking this PR as stale because it has been open 30 days with no activity. Please add a comment if this PR is still relevant; otherwise this PR will be automatically closed in 7 days.'
    20            close-issue-message: 'Closing this issue due to inactivity. Please see our [Honeycomb OSS Lifecycle and Practices](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md).'
    21            close-pr-message: 'Closing this PR due to inactivity. Please see our [Honeycomb OSS Lifecycle and Practices](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md).'
    22            days-before-issue-stale: 14
    23            days-before-pr-stale: 30
    24            days-before-issue-close: 7
    25            days-before-pr-close: 7
    26            any-of-labels: 'status: info needed,status: revision needed'