You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds support for comparison and create pull request URLs in remote services
Adds configuration options for comparison and create pull request URLs
to support custom remote services.
Updates the relevant interfaces and abstract methods to include
these new URL types.
(#4142, #4143)
Copy file name to clipboardExpand all lines: package.json
+8
Original file line number
Diff line number
Diff line change
@@ -3903,6 +3903,14 @@
3903
3903
"type": "string",
3904
3904
"markdownDescription": "Specifies the format of a commit URL for the custom remote service\n\nAvailable tokens\\\n`${repo}` — repository path\\\n`${id}` — commit SHA"
3905
3905
},
3906
+
"comparison": {
3907
+
"type": "string",
3908
+
"markdownDescription": "Specifies the format of a comparison URL for the custom remote service\n\nAvailable tokens\\\n`${repo}` — repository path\\\n`${ref1}` — ref 1\\\n`${ref2}` — ref 2\\\n`${notation}` — notation"
3909
+
},
3910
+
"createPullRequest": {
3911
+
"type": "string",
3912
+
"markdownDescription": "Specifies the format of a create pull request URL for the custom remote service\n\nAvailable tokens\\\n`${repo}` — repository path\\\n`${base}` — base branch\\\n`${compare}` — compare branch"
3913
+
},
3906
3914
"file": {
3907
3915
"type": "string",
3908
3916
"markdownDescription": "Specifies the format of a file URL for the custom remote service\n\nAvailable tokens\\\n`${repo}` — repository path\\\n`${file}` — file name\\\n`${line}` — formatted line information"
0 commit comments