Skip to content

Commit c494d8e

Browse files
committed
gen docs
1 parent 3d46e4e commit c494d8e

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

docs/cre_workflow_activate.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Activates workflow on the Workflow Registry contract
77
Changes workflow status to active on the Workflow Registry contract
88

99
```
10-
cre workflow activate <workflow-name> [flags]
10+
cre workflow activate <workflow-folder-path> [flags]
1111
```
1212

1313
### Examples
1414

1515
```
1616
17-
cre workflow activate my-workflow
17+
cre workflow activate ./my-workflow
1818
1919
```
2020

docs/cre_workflow_delete.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Deletes all versions of a workflow from the Workflow Registry
77
Deletes all workflow versions matching the given name and owner address.
88

99
```
10-
cre workflow delete <workflow-name> [flags]
10+
cre workflow delete <workflow-folder-path> [flags]
1111
```
1212

1313
### Examples
1414

1515
```
1616
17-
cre workflow delete my-workflow
17+
cre workflow delete ./my-workflow
1818
1919
```
2020

docs/cre_workflow_deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Deploys a workflow to the Workflow Registry contract
77
Compiles the workflow, uploads the artifacts, and registers the workflow in the Workflow Registry contract.
88

99
```
10-
cre workflow deploy <workflow-name> [flags]
10+
cre workflow deploy <workflow-folder-path> [flags]
1111
```
1212

1313
### Examples
1414

1515
```
1616
17-
cre workflow deploy my-workflow
17+
cre workflow deploy ./my-workflow
1818
1919
```
2020

docs/cre_workflow_pause.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Pauses workflow on the Workflow Registry contract
77
Changes workflow status to paused on the Workflow Registry contract
88

99
```
10-
cre workflow pause <workflow-name> [flags]
10+
cre workflow pause <workflow-folder-path> [flags]
1111
```
1212

1313
### Examples
1414

1515
```
1616
17-
cre workflow pause my-workflow
17+
cre workflow pause ./my-workflow
1818
1919
```
2020

docs/cre_workflow_simulate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Simulates a workflow
77
This command simulates a workflow.
88

99
```
10-
cre workflow simulate <workflow-name> [flags]
10+
cre workflow simulate <workflow-folder-path> [flags]
1111
```
1212

1313
### Examples
1414

1515
```
1616
17-
cre workflow simulate my-workflow
17+
cre workflow simulate ./my-workflow
1818
1919
```
2020

@@ -29,7 +29,7 @@ cre workflow simulate <workflow-name> [flags]
2929
-h, --help help for simulate
3030
--http-payload string HTTP trigger payload as JSON string or path to JSON file (with or without @ prefix)
3131
--non-interactive Run without prompts; requires --trigger-index and inputs for the selected trigger type
32-
-s, --secrets Should include a secrets file (path defined in the workflow settings file) (default: false)
32+
-s, --secrets string Path to the secrets file
3333
--trigger-index int Index of the trigger to run (0-based) (default -1)
3434
```
3535

0 commit comments

Comments
 (0)