We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e79ca99 commit dac44ecCopy full SHA for dac44ec
ci/dev/update-vscode.sh
@@ -98,8 +98,8 @@ main() {
98
git subtree pull --prefix lib/vscode vscode release/"${VSCODE_VERSION_TO_UPDATE}" --squash || true
99
100
# Get the files with conflicts before we commit them
101
- # so we can list them in the PR body
102
- CONFLICTS=$(git diff --name-only --diff-filter=U | while read -r line; do echo "- $line"; done)
+ # so we can list them in the PR body as todo items
+ CONFLICTS=$(git diff --name-only --diff-filter=U | while read -r line; do echo "- [ ] $line"; done)
103
PR_BODY=$(make_pr_body "$VSCODE_EXACT_VERSION" "$CONFLICTS")
104
105
echo -e "\nForcing a commit with conflicts"
0 commit comments