From 514387a6d6866abdeb3517028a6e9fcac961b81a Mon Sep 17 00:00:00 2001 From: Sebastien Tardif Date: Wed, 17 Jun 2026 21:47:02 -0700 Subject: [PATCH] ci: bump PAT expiry threshold from 30 to 45 days A 31-day month means the check on the 1st could see 31 days remaining and skip the reminder entirely, only alerting on the expiry day itself. 45 days gives a comfortable buffer regardless of month length. Signed-off-by: Sebastien Tardif --- .github/workflows/pat-expiry.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pat-expiry.yml b/.github/workflows/pat-expiry.yml index 7123b93..9ffaea4 100644 --- a/.github/workflows/pat-expiry.yml +++ b/.github/workflows/pat-expiry.yml @@ -35,8 +35,8 @@ jobs: echo "VSCE_PAT expires: $expires ($days_left days from now)" - if [ "$days_left" -gt 30 ]; then - echo "More than 30 days remaining. No action needed." + if [ "$days_left" -gt 45 ]; then + echo "More than 45 days remaining. No action needed." exit 0 fi