...

Text file src/github.com/okta/okta-sdk-golang/v2/.github/workflows/stale.yml

Documentation: github.com/okta/okta-sdk-golang/v2/.github/workflows

     1name: Mark stale issues and pull requests
     2
     3on:
     4  schedule:
     5  - cron: "30 1 * * *"
     6
     7jobs:
     8  stale:
     9
    10    runs-on: ubuntu-latest
    11
    12    steps:
    13    - uses: actions/stale@v3
    14      with:
    15        repo-token: ${{ secrets.GITHUB_TOKEN }}
    16        stale-issue-message: 'This issue has been marked stale because there has been no activity within the last 14 days. To keep this issue active, remove the `stale` label.'
    17        stale-pr-message: 'This PR has been marked stale because there has been no activity within the last 28 days. To keep this PR active, remove the `stale` label.'
    18        days-before-issue-stale: 14
    19        days-before-pr-stale: 28
    20        days-before-close: -1
    21        exempt-issue-labels: 'no-stalebot'
    22        exempt-pr-labels: 'no-stalebot'
    23        stale-issue-label: 'stale'
    24        stale-pr-label: 'stale'

View as plain text