Skip to content

Commit a2ee20c

Browse files
committed
chore: change default branch to
1 parent 59c90d5 commit a2ee20c

5 files changed

Lines changed: 15 additions & 13 deletions

File tree

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
name: CD on master
1+
name: CD on main
22

33
on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- master
7+
- main
88
paths:
99
- "docs/**"
1010
- "mkdocs.yml"
1111
- "src/**"
1212
- "scripts/deploy_docs.py"
1313
- "pyproject.toml"
1414
- "uv.lock"
15-
- ".github/workflows/CD-master.yml"
15+
- ".github/workflows/CD-main.yml"
1616

1717
env:
1818
UV_SYSTEM_PYTHON: "1"
1919

2020
jobs:
21-
publish-master-docs:
22-
name: Publish Master Docs
21+
publish-main-docs:
22+
name: Publish Main Docs
2323
runs-on: ubuntu-latest
2424
environment:
2525
name: release
@@ -43,4 +43,4 @@ jobs:
4343
run: |
4444
git config user.name "github-actions[bot]"
4545
git config user.email "actions@github.com"
46-
uv run --group docs --all-extras python scripts/deploy_docs.py --push master
46+
uv run --group docs --all-extras python scripts/deploy_docs.py --push main

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66
push:
77
branches:
8-
- master
8+
- main
99
release:
1010
types:
1111
- created

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ uv run prek install
99

1010
## Commit Messages
1111

12-
We use [Conventional Commits](https://www.conventionalcommits.org/). PRs are squash-merged, so the **PR title becomes the commit message** in `master`. This means the PR title must follow conventional commit format — individual commit messages on the branch don't matter. A CI check enforces this.
12+
We use [Conventional Commits](https://www.conventionalcommits.org/). PRs are squash-merged, so the **PR title becomes the commit message** in `main`. This means the PR title must follow conventional commit format — individual commit messages on the branch don't matter. A CI check enforces this.
1313

1414
```
1515
<type>(<optional scope>): <description>

cliff.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,4 +187,7 @@ This release includes massive docs improvements and drops support for Python 3.9
187187
- `KubeRayInteractiveJob` -- a resource that utilizes the new `InteractiveMode` for `RayJob`. It can be used to connect to Ray in Client mode -- like `KubeRayCluster` -- but gives access to `RayJob` features, such as automatic cleanup (`ttlSecondsAfterFinished`), retries (`backoffLimit`) and timeouts (`activeDeadlineSeconds`).
188188
- `RayResource` setup lifecycle has been overhauled: resources now has an `actions` parameter with 3 configuration options: `create`, `wait` and `connect`. The user can disable them and run `.create()`, `.wait()` and `.connect()` manually if needed.
189189
"""
190+
postprocessors = [
191+
{ pattern = 'danielgafni/dagster-ray/blob/master/', replace = "danielgafni/dagster-ray/blob/main/" },
192+
]
190193
trim = false

docs/changelog.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ All notable user-facing changes to `dagster-ray` will be documented in this file
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
9-
## v0.4.4 (26-03-2026)
8+
## v0.4.4 (27-03-2026)
109

1110
### :sparkles: Features
1211

@@ -20,7 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2019

2120
### :hammer_and_wrench: Other Improvements
2221

23-
- add a section for other improvements to changelog
22+
- release 0.4.4 ([#348](https://github.com/danielgafni/dagster-ray/pull/348) by [@danielgafni](https://github.com/danielgafni))
23+
- add a section for other improvements to changelog ([#347](https://github.com/danielgafni/dagster-ray/pull/347) by [@danielgafni](https://github.com/danielgafni))
2424
- improve Pipes imports and docs references ([#343](https://github.com/danielgafni/dagster-ray/pull/343) by [@danielgafni](https://github.com/danielgafni))
2525
- upgrade zensical to 0.0.28 ([#342](https://github.com/danielgafni/dagster-ray/pull/342) by [@danielgafni](https://github.com/danielgafni))
2626
- add minimal Claude Code config ([#341](https://github.com/danielgafni/dagster-ray/pull/341) by [@danielgafni](https://github.com/danielgafni))
@@ -30,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3030
This release is focused on improving support for authentication and cross-cluster KubeRay workloads.
3131

3232
!!! note
33-
If you or your company are using `dagster-ray` in production, please consider adding yourself to the list [here](https://github.com/danielgafni/dagster-ray/blob/master/README.md#-who-is-using-dagster-ray) :)
33+
If you or your company are using `dagster-ray` in production, please consider adding yourself to the list [here](https://github.com/danielgafni/dagster-ray/blob/main/README.md#-who-is-using-dagster-ray) :)
3434

3535

3636
### :sparkles: Features
@@ -162,4 +162,3 @@ This release includes massive docs improvements and drops support for Python 3.9
162162
### Added
163163
- `KubeRayInteractiveJob` -- a resource that utilizes the new `InteractiveMode` for `RayJob`. It can be used to connect to Ray in Client mode -- like `KubeRayCluster` -- but gives access to `RayJob` features, such as automatic cleanup (`ttlSecondsAfterFinished`), retries (`backoffLimit`) and timeouts (`activeDeadlineSeconds`).
164164
- `RayResource` setup lifecycle has been overhauled: resources now has an `actions` parameter with 3 configuration options: `create`, `wait` and `connect`. The user can disable them and run `.create()`, `.wait()` and `.connect()` manually if needed.
165-

0 commit comments

Comments
 (0)