Skip to content

Commit 563e594

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 07fb95c commit 563e594

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,15 @@ jobs:
263263
Type: files; Name: {app}\\{#MINGW_BITNESS}\\bin\\git-update-git-for-windows.config\
264264
Type: dirifempty; Name: {app}\\{#MINGW_BITNESS}\\bin' \
265265
$b/installer/install.iss
266+
- name: Set alerts to continue until upgrade is taken
267+
shell: bash
268+
run: |
269+
set -x
270+
271+
b=/${{matrix.arch.mingwprefix}}/bin &&
272+
273+
sed -i -e '6 a use_recently_seen=no' \
274+
$b/git-update-git-for-windows
266275
- name: Set the installer Publisher to the Git Client team
267276
shell: bash
268277
run: |

0 commit comments

Comments
 (0)