Skip to content

Commit

Permalink
fix(keep alive): Shorten the time before API call (#31)
Browse files Browse the repository at this point in the history
* 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"
  • Loading branch information
rfay authored May 22, 2024
1 parent ebc98d8 commit ca4409b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ca4409b

Please sign in to comment.