소스 검색

Add autolink for PRs

main
mamolin 3 년 전
committed by Eric Amodio
부모
커밋
af81cd496b
1개의 변경된 파일8개의 추가작업 그리고 2개의 파일을 삭제
  1. +8
    -2
      src/git/remotes/azure-devops.ts

+ 8
- 2
src/git/remotes/azure-devops.ts 파일 보기

@ -46,13 +46,19 @@ export class AzureDevOpsRemote extends RemoteProvider {
override get autolinks(): (AutolinkReference | DynamicAutolinkReference)[] {
if (this._autolinks === undefined) {
// Strip off any `_git` part from the repo url
const baseUrl = this.baseUrl.replace(gitRegex, '/');
const workUrl = this.baseUrl.replace(gitRegex, '/');
this._autolinks = [
{
prefix: '#',
url: `${baseUrl}/_workitems/edit/<num>`,
url: `${workUrl}/_workitems/edit/<num>`,
title: `Open Work Item #<num> on ${this.name}`,
},
{
// Default Pull request message when merging a PR in ADO. Will not catch commits & pushes following a different pattern.
prefix: 'Merged PR ',
url: `${this.baseUrl}/pullrequest/<num>`,
title: `Open Pull Request #<num> on ${this.name}`,
},
];
}
return this._autolinks;

불러오는 중...
취소
저장