Merge remote-tracking branch 'upstream/master' into add-external-id-to-s3-integration

This commit is contained in:
Iain Billett
2022-03-15 16:57:27 +00:00
789 changed files with 9042 additions and 6361 deletions
+25
View File
@@ -60,6 +60,31 @@ export interface Config {
appPassword?: string;
}>;
/** Integration configuration for Gerrit */
gerrit?: Array<{
/**
* The hostname of the given Gerrit instance
* @visibility frontend
*/
host: string;
/**
* The base url for the Gerrit instance.
* @visibility frontend
*/
baseUrl?: string;
/**
* The username to use for authenticated requests.
* @visibility secret
*/
username?: string;
/**
* Gerrit password used to authenticate requests. This can be either a password
* or a generated access token.
* @visibility secret
*/
password?: string;
}>;
/** Integration configuration for GitHub */
github?: Array<{
/**