We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c713e51 commit 355d895Copy full SHA for 355d895
action.yml
@@ -21,8 +21,17 @@ inputs:
21
previews:
22
description: A comma-separated list of API previews to accept
23
result-encoding:
24
- description: Either "string" or "json" (default "json")—how the result will be encoded
+ description: Either "string" or "json" (default "json")—how the result will be encoded
25
default: json
26
+ retries:
27
+ description: "The number of times to retry a request"
28
+ default: "0"
29
+ retry-after:
30
+ description: "The number of seconds between retries"
31
32
+ do-not-retry:
33
+ description: "A comma separated list of status codes that will NOT be retried. Example: '400,500'"
34
+ default: ""
35
outputs:
36
result:
37
description: The return value of the script, stringified with `JSON.stringify`
0 commit comments