generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathaction.yml
33 lines (30 loc) · 898 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: "Unstable commands"
description: "An action to retry commands if weird things happen."
inputs:
commands:
description: "The commands to run."
required: true
timeout-minutes:
description: "Maximum number of minutes before the commands are cancelled."
required: true
retry-codes:
description: "A comma-separated value containing the exit codes which should cause a retry."
required: true
shell:
description: "The shell to use to run the commands."
required: false
default: "default-shell"
working-directory:
description: "The working directory of where to run the commands."
required: false
default: ${{ github.workspace }}
max-retries:
description: "Maximum number of retries before giving up."
required: false
default: "3"
runs:
using: "node20"
main: "dist/index.js"
branding:
color: "yellow"
icon: "terminal"