Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T05:40:00.071Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

extensions.rs

24 lines · 570 B · rust
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
Served at tenant.openagents/omega Member data and write actions are omitted.