github.com/MetalBlockchain/metalgo@v1.11.9/.github/workflows/stale.yml (about)

     1  name: Mark stale issues and pull requests
     2  on:
     3    schedule:
     4      - cron: '0 0 * * 0' # Run every day at midnight UTC on Sunday
     5  jobs:
     6    stale:
     7      runs-on: ubuntu-latest
     8      steps:
     9        - uses: actions/stale@v9
    10          with:
    11            # Overall configuration
    12            operations-per-run: 100
    13  
    14            # PR configuration
    15            days-before-pr-stale: 30
    16            stale-pr-message: 'This PR has become stale because it has been open for 30 days with no activity. Adding the `lifecycle/frozen` label will cause this PR to ignore lifecycle events.'
    17            days-before-pr-close: -1
    18            stale-pr-label: lifecycle/stale
    19            exempt-pr-labels: lifecycle/frozen
    20            close-pr-label: lifecycle/rotten
    21  
    22            # Issue configuration
    23            days-before-issue-stale: 60
    24            stale-issue-message: 'This issue has become stale because it has been open 60 days with no activity. Adding the `lifecycle/frozen` label will cause this issue to ignore lifecycle events.'
    25            days-before-issue-close: -1
    26            stale-issue-label: lifecycle/stale
    27            exempt-issue-labels: lifecycle/frozen
    28            close-issue-label: lifecycle/rotten