Files
atlantis/.github/workflows/stale.yml
Dylan Page 886dd96299 refactor(ci): reduce complexity in required workflows (#3925)
* refactor(ci): builds upon work in tests to reduce complexity in requiring workflows

* fix: tweaks and missing outputs

* fix: make sure the new workflows actually run

* fix: consistency with non-required testing image
2023-11-05 21:41:32 -05:00

21 lines
780 B
YAML

name: Close Stale PRs
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-22.04
steps:
- uses: actions/stale@v8
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'