From ca4409b8f2e30efcb2376c2b3859613d6411c69a Mon Sep 17 00:00:00 2001 From: Randy Fay Date: Tue, 21 May 2024 19:20:02 -0600 Subject: [PATCH] fix(keep alive): Shorten the time before API call (#31) * fix: Shorten the time before API call The current 55 day timeout before we hit the API seems to be a little long, as GitHub warns before 55 days. We can shorten it, here to 45. But I'm not sure why we don't just use `1` here instead, not sure it would do any harm to hit the API daily. * default: "0" --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index 4473e66..6a167f3 100644 --- a/action.yaml +++ b/action.yaml @@ -33,9 +33,9 @@ inputs: default: true keepalive_time_elapsed: - description: 'Time elapsed from the previous commit to trigger a new automated commit (in days)' + description: 'Time elapsed from the most recent commit to hit API and prevent expiration (in days)' required: false - default: 55 + default: "0" debug_enabled: type: boolean