Skip to content

Commit 5420a33

Browse files
Copilotalexr00
andauthored
Add "always" option to createOnPublishBranch setting (#8259)
* Initial plan * Initial plan for adding "always" option to createOnPublishBranch setting Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com> * Add "always" option to createOnPublishBranch setting Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com> * Remove unrelated type definition change Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com>
1 parent 2841f74 commit 5420a33

File tree

3 files changed

+536
-526
lines changed

3 files changed

+536
-526
lines changed

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,11 +347,13 @@
347347
"type": "string",
348348
"enum": [
349349
"never",
350-
"ask"
350+
"ask",
351+
"always"
351352
],
352353
"enumDescriptions": [
353354
"%githubPullRequests.createOnPublishBranch.never%",
354-
"%githubPullRequests.createOnPublishBranch.ask%"
355+
"%githubPullRequests.createOnPublishBranch.ask%",
356+
"%githubPullRequests.createOnPublishBranch.always%"
355357
],
356358
"default": "ask",
357359
"description": "%githubPullRequests.createOnPublishBranch.description%"

package.nls.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"githubPullRequests.createOnPublishBranch.description": "Create a pull request when a branch is published.",
4949
"githubPullRequests.createOnPublishBranch.never": "Never create a pull request when a branch is published.",
5050
"githubPullRequests.createOnPublishBranch.ask": "Ask if you want to create a pull request when a branch is published.",
51+
"githubPullRequests.createOnPublishBranch.always": "Always create a pull request when a branch is published.",
5152
"githubPullRequests.commentExpandState.description": "Controls whether comments are expanded when a document with comments is opened. Requires a reload to take effect for comments that have already been added.",
5253
"githubPullRequests.commentExpandState.expandUnresolved": "All unresolved comments will be expanded.",
5354
"githubPullRequests.commentExpandState.collapseAll": "All comments will be collapsed.",

0 commit comments

Comments
 (0)