Files
atlantis/.github/workflows/stale.yml
renovate[bot] a357b377ff chore(deps): pin dependencies in .github/workflows/website.yml (main) (#4431)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-14 14:16:38 +00:00

21 lines
823 B
YAML

name: Close Stale PRs
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-22.04
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9
with:
stale-pr-message: 'This issue is stale because it has been open for 1 month with no activity. Remove stale label or comment or this will be closed in 1 month.'
stale-issue-message: This issue is stale because it has been open for 1 month with no activity. Remove stale label or comment or this will be closed in 1 month.'
remove-stale-when-updated: true
exempt-pr-labels: "never-stale"
exempt-issue-labels: "never-stale"
# 1 month
days-before-stale: 31
# 1 month
days-before-close: 31
only-labels: 'waiting-on-response'