Skip to content

Commit 9e98143

Browse files
Merge branch 'main' into feat/workflow-order
2 parents c2aa100 + 158cccc commit 9e98143

File tree

12 files changed

+15
-13
lines changed

12 files changed

+15
-13
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/console/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "console"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
publish = false
66

src/frontend/src/lib/components/satellites/automation/workflows/Workflow.svelte

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@
8888
.workflow {
8989
margin: 0 0 var(--padding-0_25x);
9090
91+
font-weight: var(--font-weight-bold);
92+
9193
a {
9294
text-decoration: none;
9395
}

src/frontend/src/lib/i18n/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@
11261126
"pushed_by": "pushed by",
11271127
"manually_run_by": "Manually run by",
11281128
"pr_run_by": "PR run by",
1129-
"no_workflow_info": "No workflow information available",
1129+
"no_workflow_info": "Unknown job",
11301130
"view_workflow": "View workflow run on GitHub",
11311131
"view_commit": "View commit on GitHub",
11321132
"view_branch": "View branch run on GitHub",

src/frontend/src/lib/i18n/zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@
11281128
"pushed_by": "推送者",
11291129
"manually_run_by": "手动运行者",
11301130
"pr_run_by": "PR 运行者",
1131-
"no_workflow_info": "无可用的工作流信息",
1131+
"no_workflow_info": "未知任务",
11321132
"view_workflow": "在 GitHub 上查看工作流运行",
11331133
"view_commit": "在 GitHub 上查看提交",
11341134
"view_branch": "在 GitHub 上查看分支",

src/libs/auth/src/openid/credentials/automation/verify.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ fn verify_openid_credentials(
9393
jwt,
9494
provider.issuers(),
9595
&jwks.keys,
96-
&salt,
96+
salt,
9797
assert_repository,
9898
)
9999
.map_err(VerifyOpenidCredentialsError::JwtVerify)?;

src/libs/satellite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ readme = "README.md"
1111
license = "MIT"
1212

1313
[package.metadata.juno.satellite]
14-
version = "0.1.6"
14+
version = "0.2.0"
1515

1616
[package.metadata.docs.rs]
1717
targets = ["wasm32-unknown-unknown"]

src/libs/satellite/src/api/controllers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub fn del_controllers(
3535

3636
pub fn del_controller_self() {
3737
let caller = caller();
38-
let controllers: [ControllerId; 1] = [caller.clone()];
38+
let controllers: [ControllerId; 1] = [caller];
3939

4040
delete_controllers(&controllers);
4141
}

src/libs/satellite/src/automation/controllers/register.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pub fn register_controller(
1313
) -> Result<(), String> {
1414
let PreparedAutomation(controller_id, controller) = automation;
1515

16-
let controllers: [ControllerId; 1] = [controller_id.clone()];
16+
let controllers: [ControllerId; 1] = [*controller_id];
1717

1818
let automation_workflow_key = build_automation_workflow_key(provider, credential)?;
1919

src/libs/satellite/src/automation/token/services.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub fn save_unique_token_jti(
4848

4949
let automation_token_data: AutomationTokenData = AutomationTokenData {
5050
controller_id: DocDataPrincipal {
51-
value: controller_id.clone(),
51+
value: *controller_id,
5252
},
5353
};
5454

0 commit comments

Comments
 (0)