Skip to content

Commit 471e2fd

Browse files
committed
few tweaks
1 parent f010d49 commit 471e2fd

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

public/__redirects

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2088,6 +2088,8 @@
20882088
/workers-ai/demos/* /workers-ai/guides/demos-architectures/:splat 301
20892089
/workers-ai/tutorials/* /workers-ai/guides/tutorials/:splat 301
20902090

2091+
# Workflows
2092+
/workflows/tutorials/ /workflows/ 301
20912093

20922094
# Others
20932095
/logs/analytics-integrations/* /fundamentals/data-products/analytics-integrations/:splat 301

src/content/docs/learning-paths/workflows-course/series/workflows-2.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { Render, Tabs, TabItem, Stream, Card } from "~/components";
1616
<Card>
1717
<Stream
1818
id="2c36852489758c056da930e8714b6e74"
19-
title="Introduction to Workflows"
19+
title="Monitor and batch your website data"
2020
thumbnail="https://pub-d9bf66e086fb4b639107aa52105b49dd.r2.dev/Workflows-video-2.png"
2121
showMoreVideos={false}
2222
chapters={{

src/content/docs/learning-paths/workflows-course/series/workflows-3.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ import { Render, Tabs, TabItem, Stream, Card } from "~/components";
7272

7373
Open `wrangler.toml` and find the `[triggers]` section.
7474

75-
[See here](https://github.com/craigsdennis/punderful-workflows/blob/main/wrangler.toml#L67)
75+
[See here](https://github.com/craigsdennis/punderful-workflows/blob/main/wrangler.toml#L68)
7676

7777
The `crons` array allows you to define scheduled triggers for your main Worker. The example shows a cron job configured to run every 30 minutes.
7878

@@ -100,14 +100,14 @@ import { Render, Tabs, TabItem, Stream, Card } from "~/components";
100100

101101
[See here](https://github.com/craigsdennis/punderful-workflows/blob/main/src/workflows/puntificator.ts#L135)
102102

103-
This step pauses the workflow execution for a specified duration (1 day in this case). This is useful for waiting to see user feedback on a published pun before potentially taking further action based on its popularity.
103+
This step pauses the workflow execution for a specified duration. This is useful for waiting to see user feedback on a published pun before potentially taking further action based on its popularity.
104104

105105
### Nested Workflows
106106

107107
Workflows can initiate other workflows, allowing you to compose complex processes from smaller, modular units.
108108

109109
In the `PuntificatorWorkflow`, find where it calls the `PUBLISH` workflow.
110-
110+
111111
[See here](https://github.com/craigsdennis/punderful-workflows/blob/main/src/workflows/puntificator.ts#L115)
112112

113113
This demonstrates how one workflow can trigger another, enabling the separation of concerns and modular design.

0 commit comments

Comments
 (0)