Browse Source

Closes #2908 relaxes AzDO PR autolink detection

main
Eric Amodio 1 year ago
parent
commit
5722c35895
2 changed files with 5 additions and 1 deletions
  1. +4
    -0
      CHANGELOG.md
  2. +1
    -1
      src/git/remotes/azure-devops.ts

+ 4
- 0
CHANGELOG.md View File

@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## [Unreleased]
### Changed
- Relaxes PR autolink detection for Azure DevOps to use `PR <number>` instead of `Merged PR <number>` &mdash; closes [#2908](https://github.com/gitkraken/vscode-gitlens/issues/2908)
### Fixed
- Fixes [#2896](https://github.com/gitkraken/vscode-gitlens/issues/2896) - Repositories view stuck in loading state

+ 1
- 1
src/git/remotes/azure-devops.ts View File

@ -58,7 +58,7 @@ export class AzureDevOpsRemote extends RemoteProvider {
},
{
// Default Pull request message when merging a PR in ADO. Will not catch commits & pushes following a different pattern.
prefix: 'Merged PR ',
prefix: 'PR ',
url: `${this.baseUrl}/pullrequest/<num>`,
title: `Open Pull Request #<num> on ${this.name}`,

Loading…
Cancel
Save