forked from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
38 lines (33 loc) · 1 KB
/
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
34
35
36
37
38
name: 'Nx Cloud Skipper'
description: 'Run nx commands with fallback to --no-cloud if they fail'
author: 'Robson Oliveira dos Santos'
branding:
icon: skip-forward
color: gray-dark
inputs:
command:
description: |-
Arguments to pass to the npx nx command (e.g., "affected -t lint test build")
required: true
errorMessages:
description: |-
List of error messages to detect for retry with --no-cloud.
These are must be newline-separated. Inputs that contain separators must be escaped with
a backslash (e.g. \, or \\n) unless quoted. Any leading or trailing whitespace is trimmed
unless values are quoted.
Example:
```yaml
errorMessages: |-
Workspace is unable to be authorized
exceeding the FREE plan
```
required: false
default: |-
Workspace is unable to be authorized
exceeding the FREE plan
outputs:
status:
description: 'Status of the action (success/failure)'
runs:
using: node20
main: dist/index.js