Skip to repository content24 lines · 570 B · rust
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T06:48:58.900Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
extensions.rs
1use gh_workflow::{Job, UsesJob};
2use indexmap::IndexMap;
3
4use crate::tasks::workflows::vars;
5
6pub(crate) mod bump_version;
7pub(crate) mod run_tests;
8
9pub(crate) trait WithAppSecrets: Sized {
10 fn with_app_secrets(self) -> Self;
11}
12
13impl WithAppSecrets for Job<UsesJob> {
14 fn with_app_secrets(self) -> Self {
15 self.secrets(IndexMap::from([
16 ("app-id".to_owned(), vars::ZED_ZIPPY_APP_ID.to_owned()),
17 (
18 "app-secret".to_owned(),
19 vars::ZED_ZIPPY_APP_PRIVATE_KEY.to_owned(),
20 ),
21 ]))
22 }
23}
24