mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
Fix typo'd Exclude repo-wide (#71)
This commit is contained in:
parent
a407792212
commit
e6d90398e4
2 changed files with 12 additions and 12 deletions
|
|
@ -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;
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue