Skip to content

Commit ca4409b

Browse files
authored
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"
1 parent ebc98d8 commit ca4409b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ inputs:
3333
default: true
3434

3535
keepalive_time_elapsed:
36-
description: 'Time elapsed from the previous commit to trigger a new automated commit (in days)'
36+
description: 'Time elapsed from the most recent commit to hit API and prevent expiration (in days)'
3737
required: false
38-
default: 55
38+
default: "0"
3939

4040
debug_enabled:
4141
type: boolean

0 commit comments

Comments
 (0)