Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SLIM testlist name, and tweak the stale bot #4445

Merged
merged 4 commits into from
Jul 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: 'Close stale issues and PRs'
on:
schedule:
# Run every day at 1:30AM
- cron: '30 1 * * *'
jobs:
stale:
Expand All @@ -10,8 +11,14 @@ jobs:
steps:
- uses: actions/stale@v8
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
days-before-stale: 30
days-before-stale: 90
days-before-close: 5
days-before-pr-close: -1
# Issues with this label are exempt from being checked if they are stale...
exempt-issue-labels: Low Priority
# Below are currently defaults, but given in case we decide to change
operations-per-run: 30
stale-issue-label: Stale
close-issue-reason: not_planned
2 changes: 1 addition & 1 deletion CIME/data/config/cesm/config_files.xml
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@
<value component="cam" >$COMP_ROOT_DIR_ATM/cime_config/testdefs/testlist_cam.xml</value>
<value component="cism" >$COMP_ROOT_DIR_GLC/cime_config/testdefs/testlist_cism.xml</value>
<value component="clm" >$COMP_ROOT_DIR_LND/cime_config/testdefs/testlist_clm.xml</value>
<value component="slim" >$COMP_ROOT_DIR_LND/cime_config/testdefs/testlist_clm.xml</value>
<value component="slim" >$COMP_ROOT_DIR_LND/cime_config/testdefs/testlist_slim.xml</value>
<value component="cice5" >$COMP_ROOT_DIR_ICE/cime_config/testdefs/testlist_cice.xml</value>
<value component="cice" >$COMP_ROOT_DIR_ICE/cime_config/testdefs/testlist_cice.xml</value>
<value component="pop" >$COMP_ROOT_DIR_OCN/cime_config/testdefs/testlist_pop.xml</value>
Expand Down
Loading