Merge pull request #22791 from DavidRobertsOrbis/azd-readme-location

azure-devops plugin: Ability to fetch the README file from a different AZD path
This commit is contained in:
Fredrik Adelöw
2024-02-21 09:00:19 +01:00
committed by GitHub
15 changed files with 235 additions and 8 deletions
@@ -16,6 +16,9 @@ export const AZURE_DEVOPS_HOST_ORG_ANNOTATION = 'dev.azure.com/host-org';
// @public (undocumented)
export const AZURE_DEVOPS_PROJECT_ANNOTATION = 'dev.azure.com/project';
// @public (undocumented)
export const AZURE_DEVOPS_README_ANNOTATION = 'dev.azure.com/readme-path';
// @public (undocumented)
export const AZURE_DEVOPS_REPO_ANNOTATION = 'dev.azure.com/project-repo';
@@ -228,6 +231,8 @@ export interface ReadmeConfig {
// (undocumented)
org?: string;
// (undocumented)
path?: string;
// (undocumented)
project: string;
// (undocumented)
repo: string;
@@ -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 */