-
Notifications
You must be signed in to change notification settings - Fork 816
Confusing indentation for bl_mynn_closure in README.namelist #2218
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
Closed
kkeene44
wants to merge
4
commits into
wrf-model:release-v4.7.1
from
kkeene44:readme_nl_mynn_closure
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
cb58c0b
Removed unnecessary factor in computation of dry air density in modul…
saneku 53b8571
Use proxy workflow and commit statuses to record testing results (#2143)
islas b7fffcf
Merge branch 'master' of github.com:wrf-model/WRF into develop
islas 6a1de67
Confusing indentation for bl_mynn_closure in README.namelist
kkeene44 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| name: Regression Suite Entry Point CI/CD | ||
| run-name : Queue ${{ github.event_name == 'push' && 'CI' || github.event.label.name }} (${{ github.event_name }}) | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ master, develop ] | ||
| # See https://stackoverflow.com/a/78444521 and | ||
| # https://github.com/orgs/community/discussions/26874#discussioncomment-3253755 | ||
| # as well as official (but buried) documentation : | ||
| # https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#pull-request-events-for-forked-repositories-2 | ||
| pull_request: | ||
| types: [ labeled ] | ||
|
|
||
| # Write our tests out this way for easier legibility | ||
| # testsSet : | ||
| # - key : value | ||
| # key : value | ||
| # tests : | ||
| # - value | ||
| # - value | ||
| # - < next test > | ||
| # https://stackoverflow.com/a/68940067 | ||
| jobs: | ||
| queue_tests: | ||
| if : ${{ contains( fromJson('["compile-tests","all-tests"]'), github.event.label.name ) || github.event_name == 'push' }} | ||
| name: Queue Test (${{ github.event_name == 'push' && github.ref_name || github.event.label.name }}) | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| actions: write | ||
| steps: | ||
| - name: Dispatch Regression Suite | ||
| run : | | ||
| curl -L \ | ||
| -X POST \ | ||
| -H "Accept: application/vnd.github+json" \ | ||
| -H "Authorization: Bearer ${{ github.token }}" \ | ||
| -H "X-GitHub-Api-Version: 2022-11-28" \ | ||
| https://api.github.com/repos/${GITHUB_REPOSITORY}/actions/workflows/ci.yml/dispatches \ | ||
| --data-binary @- << EOF | ||
| { | ||
| "ref" : "${{ github.event_name == 'push' && github.ref_name || github.event.pull_request.head.repo.full_name == github.repository && github.event.pull_request.head.ref || github.event.pull_request.base.ref }}", | ||
| "inputs" : | ||
| { | ||
| "event_name" : "${{ github.event_name }}", | ||
| "event_number" : "${{ github.event.number }}", | ||
| "test" : "${{ github.event.label.name }}", | ||
| "ref" : "${{ github.ref }}", | ||
| "sha" : "${{ github.event_name == 'push' && github.sha || github.event.pull_request.head.sha }}" | ||
| } | ||
| } | ||
| EOF | ||
|
|
||
|
|
||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kkeene44 Can we move these three lines to after tke_budget where other bl_mynn_* options are listed?