Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update deployment.json container image (automated)

authored by

trueberryless and committed by
github-actions[bot]
3af55abe 64ac469a

+224 -3
+208
docs/.astro/astro/content.d.ts
··· 1 + declare module 'astro:content' { 2 + interface Render { 3 + '.mdx': Promise<{ 4 + Content: import('astro').MarkdownInstance<{}>['Content']; 5 + headings: import('astro').MarkdownHeading[]; 6 + remarkPluginFrontmatter: Record<string, any>; 7 + components: import('astro').MDXInstance<{}>['components']; 8 + }>; 9 + } 10 + } 11 + 12 + declare module 'astro:content' { 13 + interface RenderResult { 14 + Content: import('astro/runtime/server/index.js').AstroComponentFactory; 15 + headings: import('astro').MarkdownHeading[]; 16 + remarkPluginFrontmatter: Record<string, any>; 17 + } 18 + interface Render { 19 + '.md': Promise<RenderResult>; 20 + } 21 + 22 + export interface RenderedContent { 23 + html: string; 24 + metadata?: { 25 + imagePaths: Array<string>; 26 + [key: string]: unknown; 27 + }; 28 + } 29 + } 30 + 31 + declare module 'astro:content' { 32 + type Flatten<T> = T extends { [K: string]: infer U } ? U : never; 33 + 34 + export type CollectionKey = keyof AnyEntryMap; 35 + export type CollectionEntry<C extends CollectionKey> = Flatten<AnyEntryMap[C]>; 36 + 37 + export type ContentCollectionKey = keyof ContentEntryMap; 38 + export type DataCollectionKey = keyof DataEntryMap; 39 + 40 + type AllValuesOf<T> = T extends any ? T[keyof T] : never; 41 + type ValidContentEntrySlug<C extends keyof ContentEntryMap> = AllValuesOf< 42 + ContentEntryMap[C] 43 + >['slug']; 44 + 45 + /** @deprecated Use `getEntry` instead. */ 46 + export function getEntryBySlug< 47 + C extends keyof ContentEntryMap, 48 + E extends ValidContentEntrySlug<C> | (string & {}), 49 + >( 50 + collection: C, 51 + // Note that this has to accept a regular string too, for SSR 52 + entrySlug: E, 53 + ): E extends ValidContentEntrySlug<C> 54 + ? Promise<CollectionEntry<C>> 55 + : Promise<CollectionEntry<C> | undefined>; 56 + 57 + /** @deprecated Use `getEntry` instead. */ 58 + export function getDataEntryById<C extends keyof DataEntryMap, E extends keyof DataEntryMap[C]>( 59 + collection: C, 60 + entryId: E, 61 + ): Promise<CollectionEntry<C>>; 62 + 63 + export function getCollection<C extends keyof AnyEntryMap, E extends CollectionEntry<C>>( 64 + collection: C, 65 + filter?: (entry: CollectionEntry<C>) => entry is E, 66 + ): Promise<E[]>; 67 + export function getCollection<C extends keyof AnyEntryMap>( 68 + collection: C, 69 + filter?: (entry: CollectionEntry<C>) => unknown, 70 + ): Promise<CollectionEntry<C>[]>; 71 + 72 + export function getEntry< 73 + C extends keyof ContentEntryMap, 74 + E extends ValidContentEntrySlug<C> | (string & {}), 75 + >(entry: { 76 + collection: C; 77 + slug: E; 78 + }): E extends ValidContentEntrySlug<C> 79 + ? Promise<CollectionEntry<C>> 80 + : Promise<CollectionEntry<C> | undefined>; 81 + export function getEntry< 82 + C extends keyof DataEntryMap, 83 + E extends keyof DataEntryMap[C] | (string & {}), 84 + >(entry: { 85 + collection: C; 86 + id: E; 87 + }): E extends keyof DataEntryMap[C] 88 + ? Promise<DataEntryMap[C][E]> 89 + : Promise<CollectionEntry<C> | undefined>; 90 + export function getEntry< 91 + C extends keyof ContentEntryMap, 92 + E extends ValidContentEntrySlug<C> | (string & {}), 93 + >( 94 + collection: C, 95 + slug: E, 96 + ): E extends ValidContentEntrySlug<C> 97 + ? Promise<CollectionEntry<C>> 98 + : Promise<CollectionEntry<C> | undefined>; 99 + export function getEntry< 100 + C extends keyof DataEntryMap, 101 + E extends keyof DataEntryMap[C] | (string & {}), 102 + >( 103 + collection: C, 104 + id: E, 105 + ): E extends keyof DataEntryMap[C] 106 + ? Promise<DataEntryMap[C][E]> 107 + : Promise<CollectionEntry<C> | undefined>; 108 + 109 + /** Resolve an array of entry references from the same collection */ 110 + export function getEntries<C extends keyof ContentEntryMap>( 111 + entries: { 112 + collection: C; 113 + slug: ValidContentEntrySlug<C>; 114 + }[], 115 + ): Promise<CollectionEntry<C>[]>; 116 + export function getEntries<C extends keyof DataEntryMap>( 117 + entries: { 118 + collection: C; 119 + id: keyof DataEntryMap[C]; 120 + }[], 121 + ): Promise<CollectionEntry<C>[]>; 122 + 123 + export function render<C extends keyof AnyEntryMap>( 124 + entry: AnyEntryMap[C][string], 125 + ): Promise<RenderResult>; 126 + 127 + export function reference<C extends keyof AnyEntryMap>( 128 + collection: C, 129 + ): import('astro/zod').ZodEffects< 130 + import('astro/zod').ZodString, 131 + C extends keyof ContentEntryMap 132 + ? { 133 + collection: C; 134 + slug: ValidContentEntrySlug<C>; 135 + } 136 + : { 137 + collection: C; 138 + id: keyof DataEntryMap[C]; 139 + } 140 + >; 141 + // Allow generic `string` to avoid excessive type errors in the config 142 + // if `dev` is not running to update as you edit. 143 + // Invalid collection names will be caught at build time. 144 + export function reference<C extends string>( 145 + collection: C, 146 + ): import('astro/zod').ZodEffects<import('astro/zod').ZodString, never>; 147 + 148 + type ReturnTypeOrOriginal<T> = T extends (...args: any[]) => infer R ? R : T; 149 + type InferEntrySchema<C extends keyof AnyEntryMap> = import('astro/zod').infer< 150 + ReturnTypeOrOriginal<Required<ContentConfig['collections'][C]>['schema']> 151 + >; 152 + 153 + type ContentEntryMap = { 154 + "docs": { 155 + "configuration.mdx": { 156 + id: "configuration.mdx"; 157 + slug: "configuration"; 158 + body: string; 159 + collection: "docs"; 160 + data: InferEntrySchema<"docs"> 161 + } & { render(): Render[".mdx"] }; 162 + "de/configuration.mdx": { 163 + id: "de/configuration.mdx"; 164 + slug: "de/configuration"; 165 + body: string; 166 + collection: "docs"; 167 + data: InferEntrySchema<"docs"> 168 + } & { render(): Render[".mdx"] }; 169 + "de/getting-started.mdx": { 170 + id: "de/getting-started.mdx"; 171 + slug: "de/getting-started"; 172 + body: string; 173 + collection: "docs"; 174 + data: InferEntrySchema<"docs"> 175 + } & { render(): Render[".mdx"] }; 176 + "de/index.mdx": { 177 + id: "de/index.mdx"; 178 + slug: "de"; 179 + body: string; 180 + collection: "docs"; 181 + data: InferEntrySchema<"docs"> 182 + } & { render(): Render[".mdx"] }; 183 + "getting-started.mdx": { 184 + id: "getting-started.mdx"; 185 + slug: "getting-started"; 186 + body: string; 187 + collection: "docs"; 188 + data: InferEntrySchema<"docs"> 189 + } & { render(): Render[".mdx"] }; 190 + "index.mdx": { 191 + id: "index.mdx"; 192 + slug: "index"; 193 + body: string; 194 + collection: "docs"; 195 + data: InferEntrySchema<"docs"> 196 + } & { render(): Render[".mdx"] }; 197 + }; 198 + 199 + }; 200 + 201 + type DataEntryMap = { 202 + 203 + }; 204 + 205 + type AnyEntryMap = ContentEntryMap & DataEntryMap; 206 + 207 + export type ContentConfig = typeof import("../../src/content/config.js"); 208 + }
+10
docs/.astro/integrations/_astrojs_starlight/i18n-plugins.d.ts
··· 1 + declare namespace StarlightApp { 2 + type PluginUIStringKeys = { 3 + 'starlightCoolerCredit.starlight.description': string; 4 + 'starlightCoolerCredit.astro.title': string; 5 + 'starlightCoolerCredit.astro.description': string; 6 + 'starlightCoolerCredit.starlight-blog.title': string; 7 + 'starlightCoolerCredit.starlight-blog.description': string; 8 + }; 9 + interface I18n extends PluginUIStringKeys {} 10 + }
+3
docs/.astro/types.d.ts
··· 1 + /// <reference types="astro/client" /> 2 + /// <reference path="integrations/_astrojs_starlight/i18n-plugins.d.ts" /> 3 + /// <reference path="astro/content.d.ts" />
+1 -1
docs/.cache/eleventy-fetch-65104f50c57044ef6795349143f990
··· 1 - [{"65104f50c57044ef6795349143f990":"1"},{"cachedAt":1731785166223,"type":"2"},"buffer"] 1 + [{"65104f50c57044ef6795349143f990":"1"},{"cachedAt":1732628226600,"type":"2"},"buffer"]
+1 -1
docs/.cache/eleventy-fetch-65104f50c57044ef6795349143f990.buffer
··· 1 - [{"login":"trueberryless","id":99918022,"node_id":"U_kgDOBfSgxg","avatar_url":"https://avatars.githubusercontent.com/u/99918022?v=4","gravatar_id":"","url":"https://api.github.com/users/trueberryless","html_url":"https://github.com/trueberryless","followers_url":"https://api.github.com/users/trueberryless/followers","following_url":"https://api.github.com/users/trueberryless/following{/other_user}","gists_url":"https://api.github.com/users/trueberryless/gists{/gist_id}","starred_url":"https://api.github.com/users/trueberryless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/trueberryless/subscriptions","organizations_url":"https://api.github.com/users/trueberryless/orgs","repos_url":"https://api.github.com/users/trueberryless/repos","events_url":"https://api.github.com/users/trueberryless/events{/privacy}","received_events_url":"https://api.github.com/users/trueberryless/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":141},{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false,"contributions":9},{"login":"sarah11918","id":5098874,"node_id":"MDQ6VXNlcjUwOTg4NzQ=","avatar_url":"https://avatars.githubusercontent.com/u/5098874?v=4","gravatar_id":"","url":"https://api.github.com/users/sarah11918","html_url":"https://github.com/sarah11918","followers_url":"https://api.github.com/users/sarah11918/followers","following_url":"https://api.github.com/users/sarah11918/following{/other_user}","gists_url":"https://api.github.com/users/sarah11918/gists{/gist_id}","starred_url":"https://api.github.com/users/sarah11918/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sarah11918/subscriptions","organizations_url":"https://api.github.com/users/sarah11918/orgs","repos_url":"https://api.github.com/users/sarah11918/repos","events_url":"https://api.github.com/users/sarah11918/events{/privacy}","received_events_url":"https://api.github.com/users/sarah11918/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":3},{"login":"ztxone","id":39146381,"node_id":"MDQ6VXNlcjM5MTQ2Mzgx","avatar_url":"https://avatars.githubusercontent.com/u/39146381?v=4","gravatar_id":"","url":"https://api.github.com/users/ztxone","html_url":"https://github.com/ztxone","followers_url":"https://api.github.com/users/ztxone/followers","following_url":"https://api.github.com/users/ztxone/following{/other_user}","gists_url":"https://api.github.com/users/ztxone/gists{/gist_id}","starred_url":"https://api.github.com/users/ztxone/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ztxone/subscriptions","organizations_url":"https://api.github.com/users/ztxone/orgs","repos_url":"https://api.github.com/users/ztxone/repos","events_url":"https://api.github.com/users/ztxone/events{/privacy}","received_events_url":"https://api.github.com/users/ztxone/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":2},{"login":"staticWagomU","id":34824645,"node_id":"MDQ6VXNlcjM0ODI0NjQ1","avatar_url":"https://avatars.githubusercontent.com/u/34824645?v=4","gravatar_id":"","url":"https://api.github.com/users/staticWagomU","html_url":"https://github.com/staticWagomU","followers_url":"https://api.github.com/users/staticWagomU/followers","following_url":"https://api.github.com/users/staticWagomU/following{/other_user}","gists_url":"https://api.github.com/users/staticWagomU/gists{/gist_id}","starred_url":"https://api.github.com/users/staticWagomU/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/staticWagomU/subscriptions","organizations_url":"https://api.github.com/users/staticWagomU/orgs","repos_url":"https://api.github.com/users/staticWagomU/repos","events_url":"https://api.github.com/users/staticWagomU/events{/privacy}","received_events_url":"https://api.github.com/users/staticWagomU/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":2},{"login":"ArmandPhilippot","id":59021693,"node_id":"MDQ6VXNlcjU5MDIxNjkz","avatar_url":"https://avatars.githubusercontent.com/u/59021693?v=4","gravatar_id":"","url":"https://api.github.com/users/ArmandPhilippot","html_url":"https://github.com/ArmandPhilippot","followers_url":"https://api.github.com/users/ArmandPhilippot/followers","following_url":"https://api.github.com/users/ArmandPhilippot/following{/other_user}","gists_url":"https://api.github.com/users/ArmandPhilippot/gists{/gist_id}","starred_url":"https://api.github.com/users/ArmandPhilippot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ArmandPhilippot/subscriptions","organizations_url":"https://api.github.com/users/ArmandPhilippot/orgs","repos_url":"https://api.github.com/users/ArmandPhilippot/repos","events_url":"https://api.github.com/users/ArmandPhilippot/events{/privacy}","received_events_url":"https://api.github.com/users/ArmandPhilippot/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":1},{"login":"jsparkdev","id":39112954,"node_id":"MDQ6VXNlcjM5MTEyOTU0","avatar_url":"https://avatars.githubusercontent.com/u/39112954?v=4","gravatar_id":"","url":"https://api.github.com/users/jsparkdev","html_url":"https://github.com/jsparkdev","followers_url":"https://api.github.com/users/jsparkdev/followers","following_url":"https://api.github.com/users/jsparkdev/following{/other_user}","gists_url":"https://api.github.com/users/jsparkdev/gists{/gist_id}","starred_url":"https://api.github.com/users/jsparkdev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jsparkdev/subscriptions","organizations_url":"https://api.github.com/users/jsparkdev/orgs","repos_url":"https://api.github.com/users/jsparkdev/repos","events_url":"https://api.github.com/users/jsparkdev/events{/privacy}","received_events_url":"https://api.github.com/users/jsparkdev/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":1},{"login":"Nin3lee","id":30520689,"node_id":"MDQ6VXNlcjMwNTIwNjg5","avatar_url":"https://avatars.githubusercontent.com/u/30520689?v=4","gravatar_id":"","url":"https://api.github.com/users/Nin3lee","html_url":"https://github.com/Nin3lee","followers_url":"https://api.github.com/users/Nin3lee/followers","following_url":"https://api.github.com/users/Nin3lee/following{/other_user}","gists_url":"https://api.github.com/users/Nin3lee/gists{/gist_id}","starred_url":"https://api.github.com/users/Nin3lee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Nin3lee/subscriptions","organizations_url":"https://api.github.com/users/Nin3lee/orgs","repos_url":"https://api.github.com/users/Nin3lee/repos","events_url":"https://api.github.com/users/Nin3lee/events{/privacy}","received_events_url":"https://api.github.com/users/Nin3lee/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":1},{"login":"casungo","id":25723446,"node_id":"MDQ6VXNlcjI1NzIzNDQ2","avatar_url":"https://avatars.githubusercontent.com/u/25723446?v=4","gravatar_id":"","url":"https://api.github.com/users/casungo","html_url":"https://github.com/casungo","followers_url":"https://api.github.com/users/casungo/followers","following_url":"https://api.github.com/users/casungo/following{/other_user}","gists_url":"https://api.github.com/users/casungo/gists{/gist_id}","starred_url":"https://api.github.com/users/casungo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/casungo/subscriptions","organizations_url":"https://api.github.com/users/casungo/orgs","repos_url":"https://api.github.com/users/casungo/repos","events_url":"https://api.github.com/users/casungo/events{/privacy}","received_events_url":"https://api.github.com/users/casungo/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":1}] 1 + [{"login":"trueberryless","id":99918022,"node_id":"U_kgDOBfSgxg","avatar_url":"https://avatars.githubusercontent.com/u/99918022?v=4","gravatar_id":"","url":"https://api.github.com/users/trueberryless","html_url":"https://github.com/trueberryless","followers_url":"https://api.github.com/users/trueberryless/followers","following_url":"https://api.github.com/users/trueberryless/following{/other_user}","gists_url":"https://api.github.com/users/trueberryless/gists{/gist_id}","starred_url":"https://api.github.com/users/trueberryless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/trueberryless/subscriptions","organizations_url":"https://api.github.com/users/trueberryless/orgs","repos_url":"https://api.github.com/users/trueberryless/repos","events_url":"https://api.github.com/users/trueberryless/events{/privacy}","received_events_url":"https://api.github.com/users/trueberryless/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":188},{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false,"contributions":12},{"login":"sarah11918","id":5098874,"node_id":"MDQ6VXNlcjUwOTg4NzQ=","avatar_url":"https://avatars.githubusercontent.com/u/5098874?v=4","gravatar_id":"","url":"https://api.github.com/users/sarah11918","html_url":"https://github.com/sarah11918","followers_url":"https://api.github.com/users/sarah11918/followers","following_url":"https://api.github.com/users/sarah11918/following{/other_user}","gists_url":"https://api.github.com/users/sarah11918/gists{/gist_id}","starred_url":"https://api.github.com/users/sarah11918/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sarah11918/subscriptions","organizations_url":"https://api.github.com/users/sarah11918/orgs","repos_url":"https://api.github.com/users/sarah11918/repos","events_url":"https://api.github.com/users/sarah11918/events{/privacy}","received_events_url":"https://api.github.com/users/sarah11918/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":3},{"login":"ztxone","id":39146381,"node_id":"MDQ6VXNlcjM5MTQ2Mzgx","avatar_url":"https://avatars.githubusercontent.com/u/39146381?v=4","gravatar_id":"","url":"https://api.github.com/users/ztxone","html_url":"https://github.com/ztxone","followers_url":"https://api.github.com/users/ztxone/followers","following_url":"https://api.github.com/users/ztxone/following{/other_user}","gists_url":"https://api.github.com/users/ztxone/gists{/gist_id}","starred_url":"https://api.github.com/users/ztxone/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ztxone/subscriptions","organizations_url":"https://api.github.com/users/ztxone/orgs","repos_url":"https://api.github.com/users/ztxone/repos","events_url":"https://api.github.com/users/ztxone/events{/privacy}","received_events_url":"https://api.github.com/users/ztxone/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":2},{"login":"staticWagomU","id":34824645,"node_id":"MDQ6VXNlcjM0ODI0NjQ1","avatar_url":"https://avatars.githubusercontent.com/u/34824645?v=4","gravatar_id":"","url":"https://api.github.com/users/staticWagomU","html_url":"https://github.com/staticWagomU","followers_url":"https://api.github.com/users/staticWagomU/followers","following_url":"https://api.github.com/users/staticWagomU/following{/other_user}","gists_url":"https://api.github.com/users/staticWagomU/gists{/gist_id}","starred_url":"https://api.github.com/users/staticWagomU/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/staticWagomU/subscriptions","organizations_url":"https://api.github.com/users/staticWagomU/orgs","repos_url":"https://api.github.com/users/staticWagomU/repos","events_url":"https://api.github.com/users/staticWagomU/events{/privacy}","received_events_url":"https://api.github.com/users/staticWagomU/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":2},{"login":"ArmandPhilippot","id":59021693,"node_id":"MDQ6VXNlcjU5MDIxNjkz","avatar_url":"https://avatars.githubusercontent.com/u/59021693?v=4","gravatar_id":"","url":"https://api.github.com/users/ArmandPhilippot","html_url":"https://github.com/ArmandPhilippot","followers_url":"https://api.github.com/users/ArmandPhilippot/followers","following_url":"https://api.github.com/users/ArmandPhilippot/following{/other_user}","gists_url":"https://api.github.com/users/ArmandPhilippot/gists{/gist_id}","starred_url":"https://api.github.com/users/ArmandPhilippot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ArmandPhilippot/subscriptions","organizations_url":"https://api.github.com/users/ArmandPhilippot/orgs","repos_url":"https://api.github.com/users/ArmandPhilippot/repos","events_url":"https://api.github.com/users/ArmandPhilippot/events{/privacy}","received_events_url":"https://api.github.com/users/ArmandPhilippot/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":1},{"login":"X7md","id":54203033,"node_id":"MDQ6VXNlcjU0MjAzMDMz","avatar_url":"https://avatars.githubusercontent.com/u/54203033?v=4","gravatar_id":"","url":"https://api.github.com/users/X7md","html_url":"https://github.com/X7md","followers_url":"https://api.github.com/users/X7md/followers","following_url":"https://api.github.com/users/X7md/following{/other_user}","gists_url":"https://api.github.com/users/X7md/gists{/gist_id}","starred_url":"https://api.github.com/users/X7md/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/X7md/subscriptions","organizations_url":"https://api.github.com/users/X7md/orgs","repos_url":"https://api.github.com/users/X7md/repos","events_url":"https://api.github.com/users/X7md/events{/privacy}","received_events_url":"https://api.github.com/users/X7md/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":1},{"login":"jsparkdev","id":39112954,"node_id":"MDQ6VXNlcjM5MTEyOTU0","avatar_url":"https://avatars.githubusercontent.com/u/39112954?v=4","gravatar_id":"","url":"https://api.github.com/users/jsparkdev","html_url":"https://github.com/jsparkdev","followers_url":"https://api.github.com/users/jsparkdev/followers","following_url":"https://api.github.com/users/jsparkdev/following{/other_user}","gists_url":"https://api.github.com/users/jsparkdev/gists{/gist_id}","starred_url":"https://api.github.com/users/jsparkdev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jsparkdev/subscriptions","organizations_url":"https://api.github.com/users/jsparkdev/orgs","repos_url":"https://api.github.com/users/jsparkdev/repos","events_url":"https://api.github.com/users/jsparkdev/events{/privacy}","received_events_url":"https://api.github.com/users/jsparkdev/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":1},{"login":"Nin3lee","id":30520689,"node_id":"MDQ6VXNlcjMwNTIwNjg5","avatar_url":"https://avatars.githubusercontent.com/u/30520689?v=4","gravatar_id":"","url":"https://api.github.com/users/Nin3lee","html_url":"https://github.com/Nin3lee","followers_url":"https://api.github.com/users/Nin3lee/followers","following_url":"https://api.github.com/users/Nin3lee/following{/other_user}","gists_url":"https://api.github.com/users/Nin3lee/gists{/gist_id}","starred_url":"https://api.github.com/users/Nin3lee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Nin3lee/subscriptions","organizations_url":"https://api.github.com/users/Nin3lee/orgs","repos_url":"https://api.github.com/users/Nin3lee/repos","events_url":"https://api.github.com/users/Nin3lee/events{/privacy}","received_events_url":"https://api.github.com/users/Nin3lee/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":1},{"login":"casungo","id":25723446,"node_id":"MDQ6VXNlcjI1NzIzNDQ2","avatar_url":"https://avatars.githubusercontent.com/u/25723446?v=4","gravatar_id":"","url":"https://api.github.com/users/casungo","html_url":"https://github.com/casungo","followers_url":"https://api.github.com/users/casungo/followers","following_url":"https://api.github.com/users/casungo/following{/other_user}","gists_url":"https://api.github.com/users/casungo/gists{/gist_id}","starred_url":"https://api.github.com/users/casungo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/casungo/subscriptions","organizations_url":"https://api.github.com/users/casungo/orgs","repos_url":"https://api.github.com/users/casungo/repos","events_url":"https://api.github.com/users/casungo/events{/privacy}","received_events_url":"https://api.github.com/users/casungo/received_events","type":"User","user_view_type":"public","site_admin":false,"contributions":1}]
+1 -1
manifest/deployment.yaml
··· 17 17 spec: 18 18 containers: 19 19 - name: starlight-cooler-credit 20 - image: "trueberryless/starlight-cooler-credit" 20 + image: "trueberryless/starlight-cooler-credit:0.1.10" 21 21 imagePullPolicy: Always