Skip to content

Commit

Permalink
Merge pull request #4445 from ekluzek/fixslimtestlistandtweakstalebot
Browse files Browse the repository at this point in the history
Fix SLIM testlist name, and tweak the stale bot

Test suite: none
Test baseline: none
Test namelist changes: none
Test status: bit for bit

Fixes #4444
Fixes #4441

User interface changes?: No

Update gh-pages html (Y/N)?: N

I did run the testlist change in SLIM to verify it's OK. I didn't see a way to test the stale bot changes. Let me know about ideas for further testing.
  • Loading branch information
jgfouca authored Jul 6, 2023
2 parents 4fb404f + 9fab08b commit bc19d71
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
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

0 comments on commit bc19d71

Please sign in to comment.