Skip to content

Commit d63677c

Browse files
authored
Add description of input parameters (#9)
1 parent 996fd4a commit d63677c

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
1-
# openfasttrace-github-action
1+
# OpenFastTrace Action
22

33
A GitHub Action for tracing requirements using OpenFastTrace.
44

55
Runs OpenFastTrace CLI's `trace` command using Temurin JRE 22 on the local workspace.
66

77
The action has the following inputs:
88

9-
| Name | Description |
10-
| :--- | :---------- |
11-
9+
| Name | Required | Description |
10+
| :---------------- | :------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
11+
| `file-patterns` | `false` | A whitespace separated list of (Bash standard) glob patterns which specify the files and directories to include in the OFT trace run.<br>If not specified, the local workspace directory is used. |
12+
| `report-filename` | `true` | The name of the file that OpenFastTrace should write the analysis results to. |
13+
| `report-format` | `false` | The format of the report that OpenFastTrace should produce. Default value is `plain`. |
14+
| `fail-on-error` | `false` | By default, the action will never fail but indicate the result of running the trace command in the `oft-exit-code` output variable.<br>Setting this parameter to `true` will let the Action return the exit code produced by running OpenFastTrace. |
1215

1316
The action has the following outputs:
1417

15-
| Name | Description |
16-
| :------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------- |
17-
| `requirements-tracing-exit-code` | 0: OFT has run successfully and all specification items are covered<br>1: OFT has either failed to run or at least one specification item is not covered. |
18+
| Name | Description |
19+
| :-------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------- |
20+
| `oft-exit-code` | `0`: OFT has run successfully and all specification items are covered<br>`>1`: OFT has either failed to run or at least one specification item is not covered. |

0 commit comments

Comments
 (0)