chore: add notes to other githost types

This commit is contained in:
ndom91 2024-09-10 14:02:11 +02:00
parent 25bbe28411
commit bfcc4abc26
3 changed files with 3 additions and 0 deletions

View File

@ -45,6 +45,7 @@ export class AzureDevOps implements GitHost {
}
async getAvailablePrTemplates(_path?: string) {
// See: https://learn.microsoft.com/en-us/azure/devops/repos/git/pull-request-templates?view=azure-devops#default-pull-request-templates
return undefined;
}

View File

@ -49,6 +49,7 @@ export class BitBucket implements GitHost {
}
async getAvailablePrTemplates(_path?: string) {
// See: https://confluence.atlassian.com/bitbucketserver/create-a-pull-request-808488431.html#Createapullrequest-templatePullrequestdescriptiontemplates
return undefined;
}

View File

@ -50,6 +50,7 @@ export class GitLab implements GitHost {
}
async getAvailablePrTemplates(_path?: string) {
// See: https://docs.gitlab.com/ee/user/project/description_templates.html
return undefined;
}