Ability to fetch the README file from a different AZD path, using an annotation on the entity

Signed-off-by: David Roberts <David.Roberts@orbis.com>
This commit is contained in:
David Roberts
2024-02-07 11:43:08 +00:00
parent dd44104e9f
commit 308b0eef3c
7 changed files with 26 additions and 3 deletions
@@ -22,6 +22,8 @@ export const AZURE_DEVOPS_HOST_ORG_ANNOTATION = 'dev.azure.com/host-org';
/** @public */
export const AZURE_DEVOPS_PROJECT_ANNOTATION = 'dev.azure.com/project';
/** @public */
export const AZURE_DEVOPS_README_ANNOTATION = 'dev.azure.com/readme-path';
/** @public */
export const AZURE_DEVOPS_REPO_ANNOTATION = 'dev.azure.com/project-repo';
/** @public */
export const AZURE_DEVOPS_DEFAULT_TOP: number = 10;
+1
View File
@@ -212,6 +212,7 @@ export interface ReadmeConfig {
repo: string;
host?: string;
org?: string;
path?: string;
}
/** @public */