Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/content/docs/workflows/build/trigger-workflows.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ name = "workflows-tutorial"
# be how you call (run) your Workflow from your other Workers handlers or
# scripts.
binding = "MY_WORKFLOW"
# script_name is required during for the beta.
# Must match the "name" of your Worker at the top of wrangler.toml
script_name = "workflows-tutorial"
# Must match the class defined in your code that extends the Workflow class
class_name = "MyWorkflow"
```
Expand Down
3 changes: 0 additions & 3 deletions src/content/docs/workflows/build/workers-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,6 @@ name = "workflows-starter"
binding = "MY_WORKFLOW"
# this is class that extends the Workflow class in src/index.ts
class_name = "MyWorkflow"
# script_name is required during for the beta.
# Must match the "name" of your Worker at the top of wrangler.toml
script_name = "workflows-starter"
```

## Workflow
Expand Down
3 changes: 0 additions & 3 deletions src/content/docs/workflows/get-started/cli-quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,6 @@ name = "workflows-starter"
binding = "MY_WORKFLOW"
# this is class that extends the Workflow class in src/index.ts
class_name = "MyWorkflow"
# script_name is required during for the beta.
# Must match the "name" of your Worker at the top of wrangler.toml
script_name = "workflows-starter"
```

You can then invoke the methods on this binding directly from your Worker script's `env` parameter. The `Workflow` type has methods for:
Expand Down
3 changes: 0 additions & 3 deletions src/content/docs/workflows/get-started/guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,6 @@ name = "workflows-starter"
binding = "MY_WORKFLOW"
# this is class that extends the Workflow class in src/index.ts
class_name = "MyWorkflow"
# script_name is required during the beta.
# Must match the "name" of your Worker at the top of wrangler.toml
script_name = "workflows-starter"
```

:::note
Expand Down
Loading