github.com/cosmos/cosmos-sdk@v0.50.10/.github/workflows/stale.yml (about)

     1  name: "Close stale issues & pull requests"
     2  on:
     3    schedule:
     4      - cron: "0 0 * * *"
     5  
     6  permissions:
     7    contents: read
     8  
     9  jobs:
    10    stale:
    11      permissions:
    12        issues: write  # for actions/stale to close stale issues
    13        pull-requests: write  # for actions/stale to close stale PRs
    14      runs-on: ubuntu-latest
    15      steps:
    16        - uses: actions/stale@v8
    17          with:
    18            repo-token: ${{ secrets.GITHUB_TOKEN }}
    19            stale-pr-message: "This pull request has been automatically marked as stale because it has not had
    20      recent activity. It will be closed if no further activity occurs. Thank you
    21      for your contributions."
    22            days-before-stale: -1
    23            days-before-close: -1
    24            days-before-pr-stale: 30
    25            days-before-pr-close: 4
    26            exempt-pr-labels: "pinned, security, proposal, blocked"