Skip to content

Commit 0470a01

Browse files
committed
handle branch rename from develop to main
1 parent e1870ab commit 0470a01

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/ISSUE_TEMPLATE/release-checklist.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Release captain responsible - <@gh_username>
3939
- [Do we need to update the `dask` versions in the `nebari-dask`?](https://github.com/conda-forge/nebari-dask-feedstock/blob/main/recipe/meta.yaml#L13-L16)
4040
- Will there be an accompanying blog post?
4141
- [ ] Prepare for the release.
42-
- [ ] Update the [`nebari upgrade`](https://github.com/nebari-dev/nebari/blob/develop/src/_nebari/upgrade.py) for this release
42+
- [ ] Update the [`nebari upgrade`](https://github.com/nebari-dev/nebari/blob/main/src/_nebari/upgrade.py) for this release
4343
- [ ] Add upgrade messaging including deprecation warnings, version specific warnings and so on.
4444
- [ ] Optionally, announce a merge freeze.
4545
- [ ] Release Candidate (RC) cycle.
@@ -65,7 +65,7 @@ _These steps must be actioned in the order they appear in this checklist._
6565

6666
- [ ] [Tag, build and push docker images](https://github.com/nebari-dev/nebari-docker-images/releases/new)
6767
- [ ] [Update and cut release for `nebari-dask` meta package on Conda-Forge.](https://github.com/conda-forge/nebari-dask-feedstock)
68-
- [ ] Update `CURRENT_RELEASE` (and any other tags) in the [`constants.py`](https://github.com/nebari-dev/nebari/blob/develop/src/_nebari/constants.py#L1)
68+
- [ ] Update `CURRENT_RELEASE` (and any other tags) in the [`constants.py`](https://github.com/nebari-dev/nebari/blob/main/src/_nebari/constants.py#L1)
6969
- [ ] [Cut PyPI release via GHA release workflow.](https://github.com/nebari-dev/nebari/releases/new)
7070
- Avoid appending `v` to tag.
7171
- Copy release notes from `RELEASE.md`.

.github/workflows/test_aws_integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ on:
3030

3131
env:
3232
AWS_DEFAULT_REGION: "us-west-2"
33-
NEBARI_GH_BRANCH: ${{ github.event.inputs.branch || 'develop' }}
33+
NEBARI_GH_BRANCH: ${{ github.event.inputs.branch || 'main' }}
3434
NEBARI_IMAGE_TAG: ${{ github.event.inputs.image-tag || 'main' }}
3535
TF_LOG: ${{ github.event.inputs.tf-log-level || 'info' }}∏
3636

.github/workflows/test_azure_integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828
- error
2929

3030
env:
31-
NEBARI_GH_BRANCH: ${{ github.event.inputs.branch || 'develop' }}
31+
NEBARI_GH_BRANCH: ${{ github.event.inputs.branch || 'main' }}
3232
NEBARI_IMAGE_TAG: ${{ github.event.inputs.image-tag || 'main' }}
3333
TF_LOG: ${{ github.event.inputs.tf-log-level || 'info' }}
3434

.github/workflows/test_do_integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828
- error
2929

3030
env:
31-
NEBARI_GH_BRANCH: ${{ github.event.inputs.branch || 'develop' }}
31+
NEBARI_GH_BRANCH: ${{ github.event.inputs.branch || 'main' }}
3232
NEBARI_IMAGE_TAG: ${{ github.event.inputs.image-tag || 'main' }}
3333
TF_LOG: ${{ github.event.inputs.tf-log-level || 'info' }}
3434

.github/workflows/test_gcp_integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828
- error
2929

3030
env:
31-
NEBARI_GH_BRANCH: ${{ github.event.inputs.branch || 'develop' }}
31+
NEBARI_GH_BRANCH: ${{ github.event.inputs.branch || 'main' }}
3232
NEBARI_IMAGE_TAG: ${{ github.event.inputs.image-tag || 'main' }}
3333
TF_LOG: ${{ github.event.inputs.tf-log-level || 'info' }}
3434

.github/workflows/test_local_integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187
# Since this is not critical for most pull requests and takes more than half of the time
188188
# in the CI, it makes sense to only run on merge to main or workflow_dispatch to speed
189189
# up feedback cycle
190-
if: github.ref_name == 'develop' || github.event_name == 'workflow_dispatch'
190+
if: github.ref_name == 'main' || github.event_name == 'workflow_dispatch'
191191
working-directory: local-deployment
192192
run: |
193193
nebari destroy --config nebari-config.yaml --disable-prompt

.github/workflows/trivy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ name: Code Scanning
77

88
on:
99
push:
10-
branches: [ "develop", "release/*" ]
10+
branches: [ "main", "release/*" ]
1111
pull_request:
1212
# The branches below must be a subset of the branches above
13-
branches: [ "develop" ]
13+
branches: [ "main" ]
1414
schedule:
1515
- cron: '19 23 * * 6'
1616

0 commit comments

Comments
 (0)