-
Notifications
You must be signed in to change notification settings - Fork 371
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'scream/master' into jgfouca/scream_down…
…stream_04_11_24 * scream/master: (539 commits) aerosol_optics - fixing name of variable: from tau_g_sw to tau_ssa_g_sw. add doc for namelist variables for MAM4 optics input files aerosol_optics - remove code. aerosol_optics - fixing run time error; we need to use get_field_out("qc") instead of get_field_in("qc"). aerosol_optics - remove old comment. aerosol_optics - remove aero_tau_forward from field manager. Add fallow-arg-mismatch to mappy aerosol_optics - remove old comment. aerosol_optics - remove temporal variables from field manager. aerosol_optics - fix typo. aerosol_optics - rename: aero_tau_forward -> tau_f_lw . aerosol_optics - remove aero from aero_tau_sw. aerosol_optics - remove aero from aero_tau_ssa_sw. aerosol_optics - remove aero from variable name. Switch mappy over to new toolchain aerosol_optics - removed duplicate variable. aerosol_optics - from Updated to Required. aerosol_optics - update comments. aerosol_optics - update comments. aerosol_optics - comment. ...
- Loading branch information
Showing
412 changed files
with
14,163 additions
and
10,904 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -11,3 +11,5 @@ updates: | |
reviewers: | ||
- "mahf708" | ||
- "bartgol" | ||
labels: | ||
- "AT: Integrate Without Testing" |
This file contains 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 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 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,62 @@ | ||
name: inputdata | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
schedule: | ||
- cron: '00 00 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
scream-defaults: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
event_name: ${{ github.event_name }} | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4 | ||
with: | ||
show-progress: false | ||
submodules: false | ||
- name: Set up Python 3.11 | ||
uses: actions/[email protected] | ||
with: | ||
python-version: "3.11" | ||
- name: Run unit tests | ||
working-directory: components/eamxx/cime_config/ | ||
run: | | ||
python -m unittest tests/eamxx_default_files.py -v | ||
notify-scream-defaults: | ||
needs: scream-defaults | ||
if: ${{ failure() && needs.scream-defaults.outputs.event_name != 'pull_request' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create issue | ||
run: | | ||
previous_issue_number=$(gh issue list \ | ||
--label "$LABELS" \ | ||
--json number \ | ||
--jq '.[0].number') | ||
if [[ -n $previous_issue_number ]]; then | ||
gh issue comment "$previous_issue_number" \ | ||
--body "$BODY" | ||
else | ||
gh issue create \ | ||
--title "$TITLE" \ | ||
--assignee "$ASSIGNEES" \ | ||
--label "$LABELS" \ | ||
--body "$BODY" | ||
fi | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
TITLE: Inputdata server file missing | ||
ASSIGNEES: mahf708,bartgol | ||
LABELS: bug,input file,notify-file-gh-action | ||
BODY: | | ||
Workflow failed! There's likely a missing file specified in the configs! For more information, please see: | ||
- Workflow URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (number ${{ github.run_number }}, attempt ${{ github.run_attempt }}) | ||
- Workflow SHA: ${{ github.sha }} |
This file contains 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 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 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 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 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
Oops, something went wrong.