Skip to content

Commit 8c99c25

Browse files
committed
docs: Fix grammar and spelling mistakes for Kestra integration docs.
1 parent eba1318 commit 8c99c25

File tree

1 file changed

+8
-8
lines changed
  • sources/platform/integrations/workflows-and-notifications

1 file changed

+8
-8
lines changed

sources/platform/integrations/workflows-and-notifications/kestra.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
---
22
title: Kestra integration
3-
description: Connect Apify with Kestra to orchestrate workflows — run Flows, extract structured data, and react to Actor or task events in real time.
3+
description: Connect Apify with Kestra to orchestrate workflows — run flows, extract structured data, and react to Actor or task events in real time.
44
sidebar_label: Kestra
55
sidebar_position: 7
66
slug: /integrations/kestra
77
---
88

9-
**Connect Apify with Kestra to orchestrate workflows — run Flows, extract structured data, and react to Actor or task events in real time.**
9+
**Connect Apify with Kestra to orchestrate workflows — run flows, extract structured data, and react to Actor or task events in real time.**
1010

1111
---
1212

1313
[Kestra](https://kestra.io/) is an open-source, event-driven orchestration platform that unifies workflows for all engineers.
14-
With the [Apify plugin for Kestra](https://github.com/apify/kestra-plugin-apify), you can seamlessly connect Apify Actors and storage to your workflows.
14+
With the [Apify plugin for Kestra](https://github.com/kestra-io/plugin-kestra), you can seamlessly connect Apify Actors and storage to your workflows.
1515
Run scrapers, extract structured data — all defined declaratively in YAML and orchestrated directly from the UI.
16-
In this guide, you'll learn how to set up authentication and incorporate it into a Kestra flows.
16+
In this guide, you'll learn how to set up and incorporate authentication into a Kestra flows.
1717

1818
## Prerequisites
1919

2020
Before you begin, make sure you have:
2121

2222
- An [Apify account](https://console.apify.com/)
23-
- An [Kestra instance](https://kestra.io/docs/getting-started/quickstart) (self‑hosted or cloud)
23+
- A [Kestra instance](https://kestra.io/docs/getting-started/quickstart) (self‑hosted or cloud)
2424

2525
Once installed, the next step is authentication.
2626

@@ -50,15 +50,15 @@ or fetching data.
5050
Tasks allow you to perform operations like running an Actor within a workflow.
5151

5252
1. Create a new flow.
53-
1. Inside the **Flow code** tab change the hello tasks type to be **io.kestra.plugin.apify.actor.Run**.
54-
1. Change the tasks id to be **run_apify_actor**
53+
1. Inside the **Flow code** tab change the hello task's type to be **io.kestra.plugin.apify.actor.Run**.
54+
1. Change the task's id to be **run_apify_actor**
5555
1. Remove the message property.
5656
1. Configure the **run_apify_actor** task by adding your required values for the properties listed below:
5757
- **actor id**: Actor ID or a tilde-separated owner's username and Actor name.
5858
- **apiToken**: A reference to the secret value you set up earlier. For example "\{\{secret(namespace=flow.namespace, key='APIFY_API_KEY')\}\}"
5959
1. Add a new task below the **run_apify_actor** with an ID of **get_dataset** and a type of **io.kestra.plugin.apify.dataset.Get**.:
6060
1. Configure the **get_dataset** to fetch the dataset generated by the **run_apify_actor** task by configuring the following values:
61-
- **datasetId**: The Id of the dataset to fetch. You can use the value from the previous task using the following syntax: "\{\{secret(namespace=flow.namespace, key='APIFY_API_KEY')\}\}"
61+
- **datasetId**: The ID of the dataset to fetch. You can use the value from the previous task using the following syntax: "\{\{secret(namespace=flow.namespace, key='APIFY_API_KEY')\}\}"
6262
- **apiToken**: A reference to the secret value you set up earlier. For example '\{\{secret(namespace=flow.namespace, key='APIFY_API_KEY')\}\}'
6363
- **input**: Input for the Actor run. The input is optional and can be used to pass data to the Actor. For our example we will add 'hashtags: ["fyp"]'
6464
- **maxItems**: The maximum number of items to fetch from the dataset. For our example we will set this to 5.

0 commit comments

Comments
 (0)