From ce5807811e149f8a921d2900ad50d8f188297d01 Mon Sep 17 00:00:00 2001 From: Jesse Nusbaumer Date: Sat, 3 Jun 2023 08:49:46 -0600 Subject: [PATCH] Replace NCAR/CAMDEN references with ESCOMP/CAM-SIMA. --- .github/scripts/branch_pr_issue_closer.py | 4 ++-- .github/scripts/pr_mod_file_tests.py | 2 +- .github/workflows/branch_push_workflow.yml | 2 +- .github/workflows/python_unit_tests.yml | 2 +- README.md | 12 ++++++------ 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/scripts/branch_pr_issue_closer.py b/.github/scripts/branch_pr_issue_closer.py index c7d35e4e..48a4b05d 100755 --- a/.github/scripts/branch_pr_issue_closer.py +++ b/.github/scripts/branch_pr_issue_closer.py @@ -138,10 +138,10 @@ def _main_prog(): ghub = Github(token) #+++++++++++++++++++++ - #Open NCAR/CAMDEN repo + #Open ESCOMP/CAM-SIMA repo #+++++++++++++++++++++ - cam_repo = ghub.get_repo("NCAR/CAMDEN") + cam_repo = ghub.get_repo("ESCOMP/CAM-SIMA") #+++++++++++++++++++++++++++++ #Get triggering commit message diff --git a/.github/scripts/pr_mod_file_tests.py b/.github/scripts/pr_mod_file_tests.py index 9fb1ed0a..752dfa73 100755 --- a/.github/scripts/pr_mod_file_tests.py +++ b/.github/scripts/pr_mod_file_tests.py @@ -155,7 +155,7 @@ def _main_prog(): #++++++++++++++++++++ #Official CAM repo: - cam_repo = ghub.get_repo("NCAR/CAMDEN") + cam_repo = ghub.get_repo("ESCOMP/CAM-SIMA") #++++++++++++++++++++++++++++++++++++++++++ #Open Pull Request which triggered workflow diff --git a/.github/workflows/branch_push_workflow.yml b/.github/workflows/branch_push_workflow.yml index 2d2c9425..94f4414a 100644 --- a/.github/workflows/branch_push_workflow.yml +++ b/.github/workflows/branch_push_workflow.yml @@ -16,7 +16,7 @@ jobs: #This job is designed to close any issues or pull requests specified #in the body of a pull request merged into a non-default branch. issue_closer: - if: github.repository == 'NCAR/CAMDEN' # Only run on main repo + if: github.repository == 'ESCOMP/CAM-SIMA' # Only run on main repo runs-on: ubuntu-latest steps: # Acquire github action routines diff --git a/.github/workflows/python_unit_tests.yml b/.github/workflows/python_unit_tests.yml index 9ca8a8db..d0d8c20a 100644 --- a/.github/workflows/python_unit_tests.yml +++ b/.github/workflows/python_unit_tests.yml @@ -16,7 +16,7 @@ jobs: #a PR is either opened or synced (i.e. additional commits are pushed #to branch involved in PR). python_unit_tests: - if: github.event_name == 'pull_request' || github.repository == 'NCAR/CAMDEN' + if: github.event_name == 'pull_request' || github.repository == 'ESCOMP/CAM-SIMA' runs-on: ubuntu-latest strategy: matrix: diff --git a/README.md b/README.md index 754283aa..1c8b3ba5 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ -# CAMDEN -CAM Developmental and Experimental iNfrastructure +# CAM-SIMA +Community Atmosphere Model - System for Integrated Modeling of the Atmosphere NOTE: Only developmental code exists at the moment. This README will be updated once production code becomes available. -## How to checkout and use CAMDEN: +## How to checkout and use CAM-SIMA: The instructions below assume you have cloned this repository and are in the repository directory. For example: ``` -git clone https://github.com/NCAR/CAMDEN.git -cd CAMDEN +git clone https://github.com/ESCOMP/CAM-SIMA.git +cd CAM-SIMA ``` -### To use unsupported CAMDEN **development** code: +### To use unsupported CAM-SIMA **development** code: ## NOTE: This is **unsupported** development code and is subject to the [CESM developer's agreement](http://www.cgd.ucar.edu/cseg/development-code.html). ```