From e6d90398e45f63e4a39b1fc917819784754f55cd Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Thu, 14 Nov 2024 17:03:34 -0600 Subject: [PATCH] Fix typo'd Exclude repo-wide (#71) --- packages/backend/src/schemas/v2.ts | 12 ++++++------ schemas/v2/index.json | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/packages/backend/src/schemas/v2.ts b/packages/backend/src/schemas/v2.ts index 2a0aea7f..5b6d2d05 100644 --- a/packages/backend/src/schemas/v2.ts +++ b/packages/backend/src/schemas/v2.ts @@ -46,11 +46,11 @@ export interface GitHubConfig { repos?: string[]; exclude?: { /** - * Exlcude forked repositories from syncing. + * Exclude forked repositories from syncing. */ forks?: boolean; /** - * Exlcude archived repositories from syncing. + * Exclude archived repositories from syncing. */ archived?: boolean; /** @@ -107,11 +107,11 @@ export interface GitLabConfig { projects?: string[]; exclude?: { /** - * Exlcude forked projects from syncing. + * Exclude forked projects from syncing. */ forks?: boolean; /** - * Exlcude archived projects from syncing. + * Exclude archived projects from syncing. */ archived?: boolean; /** @@ -155,11 +155,11 @@ export interface GiteaConfig { users?: string[]; exclude?: { /** - * Exlcude forked repositories from syncing. + * Exclude forked repositories from syncing. */ forks?: boolean; /** - * Exlcude archived repositories from syncing. + * Exclude archived repositories from syncing. */ archived?: boolean; /** diff --git a/schemas/v2/index.json b/schemas/v2/index.json index e71058d2..0f7f79c3 100644 --- a/schemas/v2/index.json +++ b/schemas/v2/index.json @@ -136,12 +136,12 @@ "forks": { "type": "boolean", "default": false, - "description": "Exlcude forked repositories from syncing." + "description": "Exclude forked repositories from syncing." }, "archived": { "type": "boolean", "default": false, - "description": "Exlcude archived repositories from syncing." + "description": "Exclude archived repositories from syncing." }, "repos": { "type": "array", @@ -227,12 +227,12 @@ "forks": { "type": "boolean", "default": false, - "description": "Exlcude forked projects from syncing." + "description": "Exclude forked projects from syncing." }, "archived": { "type": "boolean", "default": false, - "description": "Exlcude archived projects from syncing." + "description": "Exclude archived projects from syncing." }, "projects": { "type": "array", @@ -324,12 +324,12 @@ "forks": { "type": "boolean", "default": false, - "description": "Exlcude forked repositories from syncing." + "description": "Exclude forked repositories from syncing." }, "archived": { "type": "boolean", "default": false, - "description": "Exlcude archived repositories from syncing." + "description": "Exclude archived repositories from syncing." }, "repos": { "type": "array",