Skip to content

Commit b1862d8

Browse files
committed
remove auto-start
1 parent ded75d7 commit b1862d8

File tree

7 files changed

+24
-144
lines changed

7 files changed

+24
-144
lines changed

reports/llms-report.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
2-
"startedAt": "2025-11-11T16:44:03.554Z",
2+
"startedAt": "2025-11-11T18:19:12.241Z",
33
"siteBase": "https://docs.chain.link",
44
"sections": [
55
{
66
"section": "cre-go",
77
"pagesProcessed": 84,
88
"outputPath": "src/content/cre/llms-full-go.txt",
9-
"bytes": 633140,
10-
"prevBytes": 633220,
11-
"deltaBytes": -80
9+
"bytes": 631094,
10+
"prevBytes": 633140,
11+
"deltaBytes": -2046
1212
},
1313
{
1414
"section": "cre-ts",
1515
"pagesProcessed": 79,
1616
"outputPath": "src/content/cre/llms-full-ts.txt",
17-
"bytes": 588554,
18-
"prevBytes": 588686,
19-
"deltaBytes": -132
17+
"bytes": 586508,
18+
"prevBytes": 588554,
19+
"deltaBytes": -2046
2020
},
2121
{
2222
"section": "vrf",
@@ -123,5 +123,5 @@
123123
"deltaBytes": 0
124124
}
125125
],
126-
"finishedAt": "2025-11-11T16:44:07.573Z"
126+
"finishedAt": "2025-11-11T18:19:16.291Z"
127127
}

src/content/cre/guides/operations/activating-pausing-workflows.mdx

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,7 @@ The `cre workflow activate` command changes a paused workflow's status to active
3333

3434
### When to activate
3535

36-
You typically use `activate` in these scenarios:
37-
38-
- **After pausing a workflow**: To resume execution after maintenance or debugging
39-
- **Manual deployment**: When you deployed with `--auto-start=false`
40-
41-
{/* prettier-ignore */}
42-
<Aside type="note" title="Auto-start by default">
43-
Most workflows are automatically activated during deployment because `cre workflow deploy` uses `--auto-start=true` by default. You only need to manually activate workflows that were deployed with `--auto-start=false` or that have been paused.
44-
</Aside>
36+
You typically use `activate` after pausing a workflow to resume execution after maintenance or debugging.
4537

4638
### Usage
4739

src/content/cre/guides/operations/deploying-workflows.mdx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ cre workflow deploy my-workflow --target production-settings
6868
| Flag | Description |
6969
| ---------------- | --------------------------------------------------------------------------------------- |
7070
| `--target` | Sets the target environment from your configuration files (e.g., `production-settings`) |
71-
| `--auto-start` | Activate the workflow immediately after deployment (default: `true`) |
7271
| `--output` | The output file for the compiled WASM binary (default: `"./binary.wasm.br.b64"`) |
7372
| `--unsigned` | Return the raw transaction instead of broadcasting it to the network |
7473
| `--yes` | Skip confirmation prompts and proceed with the operation |
@@ -138,12 +137,6 @@ Details:
138137
Config URL: https://storage.cre.example.com/artifacts/<workflow-id>/config
139138
```
140139

141-
<Aside type="note" title="What is auto-start?">
142-
By default, the `cre workflow deploy` command uses the `--auto-start=true` flag. This means that as soon as your
143-
workflow is successfully registered onchain, it will also be immediately activated and ready to be triggered. You can
144-
disable this behavior by passing `--auto-start=false`.
145-
</Aside>
146-
147140
## Verifying your deployment
148141

149142
After a successful deployment, you can verify that your workflow was registered correctly in two ways:

src/content/cre/guides/operations/updating-deployed-workflows.mdx

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,6 @@ cre workflow deploy my-workflow --target production-settings
4242
CRE does not currently maintain workflow version history. When you redeploy a workflow with the same name, it completely replaces the previous deployment. You cannot roll back to a previous version through the CLI.
4343
</Aside>
4444

45-
### Auto-start behavior
46-
47-
By default, `cre workflow deploy` uses `--auto-start=true`, which means the updated workflow is automatically activated after deployment. If your workflow was previously paused and you want it to remain paused after the update, use `--auto-start=false`:
48-
49-
```bash
50-
cre workflow deploy my-workflow --auto-start=false --target production-settings
51-
```
52-
5345
## Best practices for updates
5446

5547
1. **Test locally first**: Always test your changes using `cre workflow simulate` before deploying to production

src/content/cre/llms-full-go.txt

Lines changed: 7 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -4865,7 +4865,6 @@ cre workflow deploy my-workflow --target production-settings
48654865
| Flag | Description |
48664866
| ---------------- | --------------------------------------------------------------------------------------- |
48674867
| `--target` | Sets the target environment from your configuration files (e.g., `production-settings`) |
4868-
| `--auto-start` | Activate the workflow immediately after deployment (default: `true`) |
48694868
| `--output` | The output file for the compiled WASM binary (default: `"./binary.wasm.br.b64"`) |
48704869
| `--unsigned` | Return the raw transaction instead of broadcasting it to the network |
48714870
| `--yes` | Skip confirmation prompts and proceed with the operation |
@@ -4935,12 +4934,6 @@ Details:
49354934
Config URL: https://storage.cre.example.com/artifacts/<workflow-id>/config
49364935
```
49374936

4938-
<Aside type="note" title="What is auto-start?">
4939-
By default, the `cre workflow deploy` command uses the `--auto-start=true` flag. This means that as soon as your
4940-
workflow is successfully registered onchain, it will also be immediately activated and ready to be triggered. You can
4941-
disable this behavior by passing `--auto-start=false`.
4942-
</Aside>
4943-
49444937
## Verifying your deployment
49454938

49464939
After a successful deployment, you can verify that your workflow was registered correctly in two ways:
@@ -4990,15 +4983,7 @@ The `cre workflow activate` command changes a paused workflow's status to active
49904983

49914984
### When to activate
49924985

4993-
You typically use `activate` in these scenarios:
4994-
4995-
- **After pausing a workflow**: To resume execution after maintenance or debugging
4996-
- **Manual deployment**: When you deployed with `--auto-start=false`
4997-
4998-
4999-
<Aside type="note" title="Auto-start by default">
5000-
Most workflows are automatically activated during deployment because `cre workflow deploy` uses `--auto-start=true` by default. You only need to manually activate workflows that were deployed with `--auto-start=false` or that have been paused.
5001-
</Aside>
4986+
You typically use `activate` after pausing a workflow to resume execution after maintenance or debugging.
50024987

50034988
### Usage
50044989

@@ -5172,14 +5157,6 @@ cre workflow deploy my-workflow --target production-settings
51725157
CRE does not currently maintain workflow version history. When you redeploy a workflow with the same name, it completely replaces the previous deployment. You cannot roll back to a previous version through the CLI.
51735158
</Aside>
51745159

5175-
### Auto-start behavior
5176-
5177-
By default, `cre workflow deploy` uses `--auto-start=true`, which means the updated workflow is automatically activated after deployment. If your workflow was previously paused and you want it to remain paused after the update, use `--auto-start=false`:
5178-
5179-
```bash
5180-
cre workflow deploy my-workflow --auto-start=false --target production-settings
5181-
```
5182-
51835160
## Best practices for updates
51845161

51855162
1. **Test locally first**: Always test your changes using `cre workflow simulate` before deploying to production
@@ -7476,38 +7453,26 @@ cre workflow deploy <workflow-name-or-path> [flags]
74767453

74777454
**Flags:**
74787455

7479-
| Flag | Description |
7480-
| ------------------ | ---------------------------------------------------------------------------------------------- |
7481-
| `-r, --auto-start` | Activate the workflow immediately after deployment (default: `true`) |
7482-
| `-o, --output` | Output file for the compiled WASM binary encoded in base64 (default: `"./binary.wasm.br.b64"`) |
7483-
| `--unsigned` | Return the raw transaction instead of sending it to the network |
7484-
| `--yes` | Skip the confirmation prompt and proceed with the operation |
7456+
| Flag | Description |
7457+
| -------------- | ---------------------------------------------------------------------------------------------- |
7458+
| `-o, --output` | Output file for the compiled WASM binary encoded in base64 (default: `"./binary.wasm.br.b64"`) |
7459+
| `--unsigned` | Return the raw transaction instead of sending it to the network |
7460+
| `--yes` | Skip the confirmation prompt and proceed with the operation |
74857461

74867462
**Examples:**
74877463

7488-
- Deploy workflow with auto-start (default behavior)
7464+
- Deploy workflow
74897465

74907466
```bash
74917467
cre workflow deploy my-workflow --target production-settings
74927468
```
74937469

7494-
- Deploy without auto-starting
7495-
7496-
```bash
7497-
cre workflow deploy my-workflow --auto-start=false --target production-settings
7498-
```
7499-
75007470
- Deploy and save the compiled binary to a custom location
75017471

75027472
```bash
75037473
cre workflow deploy my-workflow --output ./dist/workflow.wasm.br.b64
75047474
```
75057475

7506-
7507-
<Aside type="note" title="Auto-start behavior">
7508-
By default, workflows are automatically activated after deployment (`--auto-start=true`). This means they're ready to respond to triggers immediately. Use `--auto-start=false` if you need to deploy without activating.
7509-
</Aside>
7510-
75117476
For more details, see [Deploying Workflows](/cre/guides/operations/deploying-workflows).
75127477

75137478
## `cre workflow activate`
@@ -7543,11 +7508,6 @@ cre workflow activate <workflow-name-or-path> [flags]
75437508
cre workflow activate ./my-workflow --target production-settings
75447509
```
75457510

7546-
7547-
<Aside type="note" title="When to use activate">
7548-
You typically use `activate` after deploying with `--auto-start=false` or after pausing a workflow. Most workflows are automatically activated during deployment.
7549-
</Aside>
7550-
75517511
For more details, see [Activating & Pausing Workflows](/cre/guides/operations/activating-pausing-workflows).
75527512

75537513
## `cre workflow pause`

src/content/cre/llms-full-ts.txt

Lines changed: 7 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -3782,7 +3782,6 @@ cre workflow deploy my-workflow --target production-settings
37823782
| Flag | Description |
37833783
| ---------------- | --------------------------------------------------------------------------------------- |
37843784
| `--target` | Sets the target environment from your configuration files (e.g., `production-settings`) |
3785-
| `--auto-start` | Activate the workflow immediately after deployment (default: `true`) |
37863785
| `--output` | The output file for the compiled WASM binary (default: `"./binary.wasm.br.b64"`) |
37873786
| `--unsigned` | Return the raw transaction instead of broadcasting it to the network |
37883787
| `--yes` | Skip confirmation prompts and proceed with the operation |
@@ -3852,12 +3851,6 @@ Details:
38523851
Config URL: https://storage.cre.example.com/artifacts/<workflow-id>/config
38533852
```
38543853

3855-
<Aside type="note" title="What is auto-start?">
3856-
By default, the `cre workflow deploy` command uses the `--auto-start=true` flag. This means that as soon as your
3857-
workflow is successfully registered onchain, it will also be immediately activated and ready to be triggered. You can
3858-
disable this behavior by passing `--auto-start=false`.
3859-
</Aside>
3860-
38613854
## Verifying your deployment
38623855

38633856
After a successful deployment, you can verify that your workflow was registered correctly in two ways:
@@ -3907,15 +3900,7 @@ The `cre workflow activate` command changes a paused workflow's status to active
39073900

39083901
### When to activate
39093902

3910-
You typically use `activate` in these scenarios:
3911-
3912-
- **After pausing a workflow**: To resume execution after maintenance or debugging
3913-
- **Manual deployment**: When you deployed with `--auto-start=false`
3914-
3915-
3916-
<Aside type="note" title="Auto-start by default">
3917-
Most workflows are automatically activated during deployment because `cre workflow deploy` uses `--auto-start=true` by default. You only need to manually activate workflows that were deployed with `--auto-start=false` or that have been paused.
3918-
</Aside>
3903+
You typically use `activate` after pausing a workflow to resume execution after maintenance or debugging.
39193904

39203905
### Usage
39213906

@@ -4089,14 +4074,6 @@ cre workflow deploy my-workflow --target production-settings
40894074
CRE does not currently maintain workflow version history. When you redeploy a workflow with the same name, it completely replaces the previous deployment. You cannot roll back to a previous version through the CLI.
40904075
</Aside>
40914076

4092-
### Auto-start behavior
4093-
4094-
By default, `cre workflow deploy` uses `--auto-start=true`, which means the updated workflow is automatically activated after deployment. If your workflow was previously paused and you want it to remain paused after the update, use `--auto-start=false`:
4095-
4096-
```bash
4097-
cre workflow deploy my-workflow --auto-start=false --target production-settings
4098-
```
4099-
41004077
## Best practices for updates
41014078

41024079
1. **Test locally first**: Always test your changes using `cre workflow simulate` before deploying to production
@@ -6118,38 +6095,26 @@ cre workflow deploy <workflow-name-or-path> [flags]
61186095

61196096
**Flags:**
61206097

6121-
| Flag | Description |
6122-
| ------------------ | ---------------------------------------------------------------------------------------------- |
6123-
| `-r, --auto-start` | Activate the workflow immediately after deployment (default: `true`) |
6124-
| `-o, --output` | Output file for the compiled WASM binary encoded in base64 (default: `"./binary.wasm.br.b64"`) |
6125-
| `--unsigned` | Return the raw transaction instead of sending it to the network |
6126-
| `--yes` | Skip the confirmation prompt and proceed with the operation |
6098+
| Flag | Description |
6099+
| -------------- | ---------------------------------------------------------------------------------------------- |
6100+
| `-o, --output` | Output file for the compiled WASM binary encoded in base64 (default: `"./binary.wasm.br.b64"`) |
6101+
| `--unsigned` | Return the raw transaction instead of sending it to the network |
6102+
| `--yes` | Skip the confirmation prompt and proceed with the operation |
61276103

61286104
**Examples:**
61296105

6130-
- Deploy workflow with auto-start (default behavior)
6106+
- Deploy workflow
61316107

61326108
```bash
61336109
cre workflow deploy my-workflow --target production-settings
61346110
```
61356111

6136-
- Deploy without auto-starting
6137-
6138-
```bash
6139-
cre workflow deploy my-workflow --auto-start=false --target production-settings
6140-
```
6141-
61426112
- Deploy and save the compiled binary to a custom location
61436113

61446114
```bash
61456115
cre workflow deploy my-workflow --output ./dist/workflow.wasm.br.b64
61466116
```
61476117

6148-
6149-
<Aside type="note" title="Auto-start behavior">
6150-
By default, workflows are automatically activated after deployment (`--auto-start=true`). This means they're ready to respond to triggers immediately. Use `--auto-start=false` if you need to deploy without activating.
6151-
</Aside>
6152-
61536118
For more details, see [Deploying Workflows](/cre/guides/operations/deploying-workflows).
61546119

61556120
## `cre workflow activate`
@@ -6185,11 +6150,6 @@ cre workflow activate <workflow-name-or-path> [flags]
61856150
cre workflow activate ./my-workflow --target production-settings
61866151
```
61876152

6188-
6189-
<Aside type="note" title="When to use activate">
6190-
You typically use `activate` after deploying with `--auto-start=false` or after pausing a workflow. Most workflows are automatically activated during deployment.
6191-
</Aside>
6192-
61936153
For more details, see [Activating & Pausing Workflows](/cre/guides/operations/activating-pausing-workflows).
61946154

61956155
## `cre workflow pause`

src/content/cre/reference/cli/workflow.mdx

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -94,36 +94,24 @@ cre workflow deploy <workflow-name-or-path> [flags]
9494

9595
| <div style={{ width: "150px" }}>Flag</div> | Description |
9696
| ------------------------------------------ | ---------------------------------------------------------------------------------------------- |
97-
| `-r, --auto-start` | Activate the workflow immediately after deployment (default: `true`) |
9897
| `-o, --output` | Output file for the compiled WASM binary encoded in base64 (default: `"./binary.wasm.br.b64"`) |
9998
| `--unsigned` | Return the raw transaction instead of sending it to the network |
10099
| `--yes` | Skip the confirmation prompt and proceed with the operation |
101100

102101
**Examples:**
103102

104-
- Deploy workflow with auto-start (default behavior)
103+
- Deploy workflow
105104

106105
```bash
107106
cre workflow deploy my-workflow --target production-settings
108107
```
109108

110-
- Deploy without auto-starting
111-
112-
```bash
113-
cre workflow deploy my-workflow --auto-start=false --target production-settings
114-
```
115-
116109
- Deploy and save the compiled binary to a custom location
117110

118111
```bash
119112
cre workflow deploy my-workflow --output ./dist/workflow.wasm.br.b64
120113
```
121114

122-
{/* prettier-ignore */}
123-
<Aside type="note" title="Auto-start behavior">
124-
By default, workflows are automatically activated after deployment (`--auto-start=true`). This means they're ready to respond to triggers immediately. Use `--auto-start=false` if you need to deploy without activating.
125-
</Aside>
126-
127115
For more details, see [Deploying Workflows](/cre/guides/operations/deploying-workflows).
128116

129117
## `cre workflow activate`
@@ -159,11 +147,6 @@ cre workflow activate <workflow-name-or-path> [flags]
159147
cre workflow activate ./my-workflow --target production-settings
160148
```
161149

162-
{/* prettier-ignore */}
163-
<Aside type="note" title="When to use activate">
164-
You typically use `activate` after deploying with `--auto-start=false` or after pausing a workflow. Most workflows are automatically activated during deployment.
165-
</Aside>
166-
167150
For more details, see [Activating & Pausing Workflows](/cre/guides/operations/activating-pausing-workflows).
168151

169152
## `cre workflow pause`

0 commit comments

Comments
 (0)