You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-13
Original file line number
Diff line number
Diff line change
@@ -25,12 +25,12 @@ By default, the output(s) from the command are masked from the GitHub Actions lo
25
25
26
26
*`silent`: (Optional; default: _true_) If set to _false_ the action will not mask or suppress the command or outputs from the logs or console.
27
27
28
-
> **Note:** the output does not need to be visible in the log to be used as an > input by another task.
28
+
> **Note:** the output does not need to be visible in the log to be used as an input by another task.
29
29
30
30
## Outputs
31
31
32
32
*`output`: will contain the results of the command in JSON format.
33
-
*`raw_output`: if the output of a given query is a single string value, this will return the string without surrounding quotes.
33
+
*`raw_output`: if the output of a given query is a single string value, `raw_output` will return the string without surrounding quotes.
34
34
35
35
> **Note:** filtering the `output` or `raw_output` by piping it through another tool like `jq` may result in the filtered output being visible in the job logs. We recommend using the `query` parameter instead.
36
36
@@ -40,7 +40,7 @@ The following example lists all compute instances found in the `testing` compart
40
40
41
41
To change the name of the compartment, modifying the `query` parameter of the `find-compartment-id` step.
42
42
43
-
To change which fields are returned, modify the `query` parameter of the `find-instasnces` step.
43
+
To change which fields are returned, modify the `query` parameter of the `find-instances` step.
44
44
45
45
```yaml
46
46
jobs:
@@ -55,42 +55,39 @@ jobs:
55
55
OCI_CLI_REGION: ${{ secrets.OCI_CLI_REGION }}
56
56
steps:
57
57
- name: Retrieve the OCID of a named compartment in tenancy
Consult the [JMESPath documentation][4] for details on how to create more complex queries and result formatting and [`action.yml`](./action.yml) for more detail on how to configure this action..
77
77
78
78
## Contributing
79
79
80
-
We welcome contributions from the community. Before submitting a pull
0 commit comments