Skip to content

Commit a0343bc

Browse files
authored
Merge pull request #652 from billsacks/no_srt
Only run srt workflow when manually triggered ### Description of changes Don't run the CIME scripts_regression_tests workflow on PR and main branch pushes, because it is currently not working. ### Specific notes Contributors other than yourself, if any: CMEPS Issues Fixed (include github issue #): Stop-gap that partially addresses #646. Are changes expected to change answers? (specify if bfb, different at roundoff, more substantial) No - bfb Any User Interface Changes (namelist or namelist defaults changes)? No ### Testing performed None
2 parents 42ff199 + fdaa267 commit a0343bc

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/srt.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22

33
name: scripts regression tests
44

5-
# Controls when the action will run. Triggers the workflow on push or pull request
6-
# events but only for the main branch
5+
# Controls when the action will run. Only runs when manually triggered. (See
6+
# https://github.com/escomp/cmeps/issues/646 for discussion regarding why we don't run
7+
# this automatically.)
78
on:
8-
push:
9-
branches: [ main ]
10-
pull_request:
11-
branches: [ main ]
9+
workflow_dispatch:
1210

1311
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1412
jobs:

0 commit comments

Comments
 (0)