...

Text file src/go.einride.tech/aip/.github/workflows/stale.yml

Documentation: go.einride.tech/aip/.github/workflows

     1name: Stale
     2
     3permissions:
     4  issues: write
     5  pull-requests: write
     6
     7on:
     8  workflow_dispatch:
     9  schedule:
    10    # At 08:00 on every Monday.
    11    - cron: "0 8 * * 1"
    12
    13jobs:
    14  stale:
    15    runs-on: ubuntu-latest
    16    steps:
    17      - uses: actions/stale@v9
    18        with:
    19          days-before-pr-stale: 180
    20          days-before-pr-close: 14
    21          stale-pr-message: "This PR has been open for **180 days** with no activity. Remove the stale label or add a comment or it will be closed in **14 days**."
    22          days-before-issue-stale: 365
    23          days-before-issue-close: -1
    24          stale-issue-message: "This issue has been open for **365 days** with no activity. Marking as stale."

View as plain text