Skip to content

Commit 3b427a8

Browse files
committed
Adding input configuration for max retries + delay interval
1 parent 9ad20b4 commit 3b427a8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ inputs:
4545
description: 'Maximum time in seconds to wait for build completion'
4646
required: false
4747
default: '3600'
48+
retry_max_attempts:
49+
description: 'Maximum number of retry attempts for API calls during build status polling (for transient failures like 5xx errors)'
50+
required: false
51+
default: '5'
52+
retry_base_delay:
53+
description: 'Base delay in seconds for exponential backoff between retry attempts'
54+
required: false
55+
default: '2'
4856
commit_author_name:
4957
description: 'Default commit author name to use if not available from event payload (useful for events without pusher field like status events)'
5058
required: false

0 commit comments

Comments
 (0)