Skip to content

Commit 6574d29

Browse files
authored
Fix invalid GH action and restart file name (NOAA-EMC#2210)
Resolves a typo that leads to an invalid workflow yaml and fixes the restart filename in restart detection. Resolves NOAA-EMC#2205
1 parent 69605ea commit 6574d29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
if-no-files-found: ignore
5858

5959
- name: Comment ReadDocs Link in PR
60-
if: github.event_name == "pull_request"
60+
if: github.event_name == 'pull_request'
6161
uses: actions/github-script@v6
6262
with:
6363
script: |

ush/forecast_det.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ FV3_det(){
6767

6868
# Check for availability of FV3 restarts
6969
if [[ -f "${COM_ATMOS_RESTART}/${PDYS}.${cycs}0000.coupler.res" ]]; then
70-
mv "${COM_ATMOS_RESTART}/${PDYS}.${cycs}.coupler.res" "${COM_ATMOS_RESTART}/${PDYS}.${cycs}.coupler.res.old"
70+
mv "${COM_ATMOS_RESTART}/${PDYS}.${cycs}0000.coupler.res" "${COM_ATMOS_RESTART}/${PDYS}.${cycs}0000.coupler.res.old"
7171
else
7272
local fv3_rst_ok="NO"
7373
fi

0 commit comments

Comments
 (0)