Skip to content

Commit ffa91dd

Browse files
committed
chore: rename
1 parent 26e593b commit ffa91dd

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/full-dist-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
- name: Checkout repo
3232
uses: actions/checkout@v4
3333
with:
34-
repository: MODFLOW-USGS/modflow6-nightly-build
34+
repository: MODFLOW-ORG/modflow6-nightly-build
3535

3636
- name: Checkout modflow6
3737
uses: actions/checkout@v4
3838
with:
39-
repository: MODFLOW-USGS/modflow6
39+
repository: MODFLOW-ORG/modflow6
4040
path: modflow6
4141

4242
- name: Setup Python
@@ -57,7 +57,7 @@ jobs:
5757
make_dist:
5858
name: Make full distribution
5959
needs: get_version
60-
uses: MODFLOW-USGS/modflow6/.github/workflows/release.yml@develop
60+
uses: MODFLOW-ORG/modflow6/.github/workflows/release.yml@develop
6161
with:
6262
approve: false
6363
branch: develop

.github/workflows/nightly-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Checkout repo
4848
uses: actions/checkout@v4
4949
with:
50-
repository: MODFLOW-USGS/modflow6-nightly-build
50+
repository: MODFLOW-ORG/modflow6-nightly-build
5151

5252
- name: Checkout modflow6
5353
uses: actions/checkout@v4
@@ -73,7 +73,7 @@ jobs:
7373
make_dist:
7474
name: Make development distribution
7575
needs: get_version
76-
uses: MODFLOW-USGS/modflow6/.github/workflows/release.yml@develop
76+
uses: MODFLOW-ORG/modflow6/.github/workflows/release.yml@develop
7777
with:
7878
approve: false
7979
branch: develop

DEVELOPER.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Developing the MODFLOW 6 nightly build
22

3-
This repository exists solely to orchestrate bleeding-edge MODFLOW 6 development version releases independently of the [main MODFLOW 6 repository](https://github.com/MODFLOW-USGS/modflow6). It contains no source code or scripts, only GitHub Actions workflows and a `requirements.txt` file specifying Python dependencies. All scripts related to MODFLOW 6 distribution/release are contained in the `distribution` folder in the MODFLOW 6 repository.
3+
This repository exists solely to orchestrate bleeding-edge MODFLOW 6 development version releases independently of the [main MODFLOW 6 repository](https://github.com/MODFLOW-ORG/modflow6). It contains no source code or scripts, only GitHub Actions workflows and a `requirements.txt` file specifying Python dependencies. All scripts related to MODFLOW 6 distribution/release are contained in the `distribution` folder in the MODFLOW 6 repository.
44

55
## Workflows
66

@@ -11,8 +11,8 @@ This repository contains two workflows:
1111

1212
### Development distribution
1313

14-
The `dev.yml` workflow builds a minimal development distribution of MODFLOW 6 and posts it on this repository's [releases page](https://github.com/MODFLOW-USGS/modflow6-nightly-build/releases). Assets include only binaries and the MODFLOW 6 input/output PDF documentation. This workflow is triggered each night, as well as whenever new code is merged into the MODFLOW 6 repo's `develop` branch. If a release already exists for a given date, assets are updated on the existing release. Binaries from the same date can be distinguished by compile timestamps emitted in the header info block at runtime.
14+
The `dev.yml` workflow builds a minimal development distribution of MODFLOW 6 and posts it on this repository's [releases page](https://github.com/MODFLOW-ORG/modflow6-nightly-build/releases). Assets include only binaries and the MODFLOW 6 input/output PDF documentation. This workflow is triggered each night, as well as whenever new code is merged into the MODFLOW 6 repo's `develop` branch. If a release already exists for a given date, assets are updated on the existing release. Binaries from the same date can be distinguished by compile timestamps emitted in the header info block at runtime.
1515

1616
### Full distribution test
1717

18-
Each night, the `full.yml` workflow tests the full, official MODFLOW 6 release procedure and posts the created distribution as an artifact. This distribution is identical to that produced in a [real release](https://github.com/MODFLOW-USGS/modflow6/blob/develop/distribution/README.md), with the exception of version numbers. This permits regular inspection of the distribution, allowing more confidence at release time.
18+
Each night, the `full.yml` workflow tests the full, official MODFLOW 6 release procedure and posts the created distribution as an artifact. This distribution is identical to that produced in a [real release](https://github.com/MODFLOW-ORG/modflow6/blob/develop/distribution/README.md), with the exception of version numbers. This permits regular inspection of the distribution, allowing more confidence at release time.

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
Nightly development build of MODFLOW 6.
44

5-
[![Latest tag](https://img.shields.io/github/tag/MODFLOW-USGS/modflow6-nightly-build.svg)](https://github.com/MODFLOW-USGS/modflow6-nightly-build/tags/latest)
6-
[![MODFLOW 6 nightly build](https://github.com/MODFLOW-USGS/modflow6-nightly-build/actions/workflows/nightly-build.yml/badge.svg)](https://github.com/MODFLOW-USGS/modflow6-nightly-build/actions/workflows/nightly-build.yml)
7-
[![MODFLOW 6 full distribution test](https://github.com/MODFLOW-USGS/modflow6-nightly-build/actions/workflows/full-dist-test.yml/badge.svg)](https://github.com/MODFLOW-USGS/modflow6-nightly-build/actions/workflows/full-dist-test.yml)
5+
[![Latest tag](https://img.shields.io/github/tag/MODFLOW-ORG/modflow6-nightly-build.svg)](https://github.com/MODFLOW-ORG/modflow6-nightly-build/tags/latest)
6+
[![MODFLOW 6 nightly build](https://github.com/MODFLOW-ORG/modflow6-nightly-build/actions/workflows/nightly-build.yml/badge.svg)](https://github.com/MODFLOW-ORG/modflow6-nightly-build/actions/workflows/nightly-build.yml)
7+
[![MODFLOW 6 full distribution test](https://github.com/MODFLOW-ORG/modflow6-nightly-build/actions/workflows/full-dist-test.yml/badge.svg)](https://github.com/MODFLOW-ORG/modflow6-nightly-build/actions/workflows/full-dist-test.yml)
88

9-
The `develop` branch of the [MODFLOW 6 repository](https://github.com/MODFLOW-USGS/modflow6) contains bug fixes and new functionality that may be incorporated into the next [approved MODFLOW 6 release](https://www.usgs.gov/software/modflow-6-usgs-modular-hydrologic-model). Minimal development distributions are posted regularly to [nightly build repository](https://github.com/MODFLOW-USGS/modflow6-nightly-build/releases/latest) — these should be considered preliminary, provisional release candidates for the next version of MODFLOW 6.
9+
The `develop` branch of the [MODFLOW 6 repository](https://github.com/MODFLOW-ORG/modflow6) contains bug fixes and new functionality that may be incorporated into the next [approved MODFLOW 6 release](https://www.usgs.gov/software/modflow-6-usgs-modular-hydrologic-model). Minimal development distributions are posted regularly to [nightly build repository](https://github.com/MODFLOW-ORG/modflow6-nightly-build/releases/latest) — these should be considered preliminary, provisional release candidates for the next version of MODFLOW 6.
1010

1111
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
1212
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
@@ -22,13 +22,13 @@ The `develop` branch of the [MODFLOW 6 repository](https://github.com/MODFLOW-US
2222

2323
## Distribution contents
2424

25-
The nightly builds are available as operating-system specific [distributions](https://github.com/MODFLOW-USGS/modflow6-nightly-build/releases/latest) including binaries, MODFLOW 6 input/output documentation, development notes, and a `code.json` metadata file.
25+
The nightly builds are available as operating-system specific [distributions](https://github.com/MODFLOW-ORG/modflow6-nightly-build/releases/latest) including binaries, MODFLOW 6 input/output documentation, development notes, and a `code.json` metadata file.
2626

2727
### Binaries
2828

2929
The binaries are built in develop mode.
3030

31-
Linux binaries built on Ubuntu 22.04 may encounter `libc`-related backwards-incompatibilities on earlier versions of Ubuntu or other Linux distributions. This distribution, the main MODFLOW 6 distribution, and the [`MODFLOW-USGS/executables`](https://github.com/MODFLOW-USGS/executables/releases) distribution are built on Ubuntu 20.04 for broader compatibility.
31+
Linux binaries built on Ubuntu 22.04 may encounter `libc`-related backwards-incompatibilities on earlier versions of Ubuntu or other Linux distributions. This distribution, the main MODFLOW 6 distribution, and the [`MODFLOW-ORG/executables`](https://github.com/MODFLOW-ORG/executables/releases) distribution are built on Ubuntu 20.04 for broader compatibility.
3232

3333
### Documentation
3434

@@ -40,7 +40,7 @@ Release tags are based on the date, with format `YYYYMMDD`. Nightly builds are r
4040

4141
## Reporting issues
4242

43-
Any issues with the nightly build should be posted on the main [MODFLOW 6 GitHub repo](https://github.com/MODFLOW-USGS/modflow6) and flagged with the [nightly build](https://github.com/MODFLOW-USGS/modflow6/labels/nightly%20build) label.
43+
Any issues with the nightly build should be posted on the main [MODFLOW 6 GitHub repo](https://github.com/MODFLOW-ORG/modflow6) and flagged with the [nightly build](https://github.com/MODFLOW-ORG/modflow6/labels/nightly%20build) label.
4444

4545

4646
## Disclaimer

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
https://github.com/modflowpy/flopy/archive/develop.zip
2-
https://github.com/MODFLOW-USGS/modflow-devtools/archive/develop.zip
2+
https://github.com/MODFLOW-ORG/modflow-devtools/archive/develop.zip
33
flopy[test, optional]
44
meson!=0.63.0
55
mfpymake

0 commit comments

Comments
 (0)