Skip to content

Commit a7616bf

Browse files
derrickstoleedscho
authored andcommitted
release: continue pestering until user upgrades
In 'git-update-git-for-windows', there is a recently_seen variable that is loaded from Git config. This is intended to allow users to say "No, I don't want that version of Git for Windows." If users say no, then they are not reminded. Ever. We want users of microsoft/git to be notified repeately until they upgrade. The first notification might be dismissed because they don't want to interrupt their work. They should get the picture within a few reminders and upgrade in a timely fashion. Signed-off-by: Derrick Stolee <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 5c9a82c commit a7616bf

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/build-git-installers.yml

+9
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,15 @@ jobs:
225225
Type: files; Name: {app}\\{#MINGW_BITNESS}\\bin\\git-update-git-for-windows.config\
226226
Type: dirifempty; Name: {app}\\{#MINGW_BITNESS}\\bin' \
227227
$b/installer/install.iss
228+
- name: Set alerts to continue until upgrade is taken
229+
shell: bash
230+
run: |
231+
set -x
232+
233+
b=/${{matrix.arch.mingwprefix}}/bin &&
234+
235+
sed -i -e '6 a use_recently_seen=no' \
236+
$b/git-update-git-for-windows
228237
- name: Set the installer Publisher to the Git Client team
229238
shell: bash
230239
run: |

0 commit comments

Comments
 (0)