Skip to content

Commit 27c3829

Browse files
Rename repo and branch
1 parent f5d626f commit 27c3829

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.github/workflows/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: # yamllint disable-line rule:truthy
44
pull_request:
55
push:
66
branches:
7-
- master
7+
- main
88
workflow_dispatch:
99
jobs:
1010
# https://doc.rust-lang.org/cargo/reference/unstable.html#direct-minimal-versions

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Here is the full step-by-step process, please follow it rigorously.
206206
10. Tag the "Release launch-<version>" commit with `git tag launch/<version> <commit>` and `git push origin launch/<version>`.
207207
Be careful not to tag a squashed commit, we want the changelog to have the most recent version at the top.
208208
Repeat until release action passes.
209-
11. Merge PR with `git checkout master && git pull --no-rebase && git merge --no-ff launch/release-<version> && git push`.
209+
11. Merge PR with `git checkout main && git pull --no-rebase && git merge --no-ff launch/release-<version> && git push`.
210210
12. Post in the `#infra` slack channel:
211211
```
212212
launch <version> has been released :partying_face:. Please view the release page if you use launch.

launch/src/builder/kaniko.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ impl KanikoBuilder<'_> {
152152
};
153153

154154
// TODO support repo git url
155-
let push_remote = "github.com/Astera-org/obelisk";
155+
let push_remote = "github.com/Astera-org/launch";
156156

157157
// Does not take into account symlinks and what not, should be good enough.
158158
let sub_path = working_directory

launch/src/cli/submit.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,7 @@ pub fn submit(context: &ClusterContext, args: SubmitArgs) -> Result<()> {
208208
Ok(_) => Some(path),
209209
Err(error) => {
210210
let error_string = format!(
211-
"Databricks configuration not found at {path:?}: {error}. \
212-
Please follow the instructions at https://github.com/Astera-org/obelisk/blob/master/research/README.md#logging-to-mlflow."
211+
"Databricks configuration not found at {path:?}: {error}."
213212
);
214213
if databrickscfg_mode == DatabricksCfgMode::Require {
215214
return Err(error_string.into());

rattler_build/recipe/recipe.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ requirements:
2626
- ${{ compiler('rust') }}
2727

2828
about:
29-
homepage: https://github.com/Astera-org/obelisk/tree/master/launch/README.md
29+
homepage: https://github.com/Astera-org/launch/tree/main/README.md
3030
description: ${{ description }}

0 commit comments

Comments
 (0)