Skip to content

Commit cd15862

Browse files
committed
Remove "VS" from updates
Technically it is Code (or Code OSS), not VS Code.
1 parent 51bc3c0 commit cd15862

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/update.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ jobs:
6363
git config --global user.email opensource@coder.com
6464
git checkout -b "update/$VERSION"
6565
git add .
66-
git commit -m "Update VS Code to $VERSION"
66+
git commit -m "Update Code to $VERSION"
6767
git push -u origin "$(git branch --show)"
6868
gh pr create \
6969
--repo coder/code-server \
70-
--title "Update VS Code to $VERSION" \
70+
--title "Update Code to $VERSION" \
7171
--body-file .cache/checklist \
7272
--draft

ci/build/update-vscode.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,12 @@ function main() {
132132
fi
133133
target_vscode_version="${VERSION#v}"
134134
steps+=(
135-
"Update VS Code to $target_vscode_version" "update_vscode"
136-
"Refresh VS Code patches" "refresh_patches"
135+
"Update Code to $target_vscode_version" "update_vscode"
136+
"Refresh Code patches" "refresh_patches"
137137
)
138138
else
139139
target_vscode_version="$(git -C lib/vscode describe --tags --exact-match)"
140-
echo "Detected VS Code version $target_vscode_version"
140+
echo "Detected Code version $target_vscode_version"
141141
fi
142142

143143
steps+=(

0 commit comments

Comments
 (0)