Skip to content

Commit

Permalink
update titles
Browse files Browse the repository at this point in the history
  • Loading branch information
PedramNavid committed Aug 15, 2024
1 parent 9678efc commit 4da28c4
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
6 changes: 5 additions & 1 deletion docs/docs-next/docs/guides/automation/asset-sensors.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
title: Asset Sensors
---

### Basic Asset Sensor Example

<CodeExample filePath="guides/automation/simple-asset-sensor-example.py" language="python" title="Simple Asset Sensor Example" />

This Asset Sensor will trigger a run of `my_job` whenever the `asset_to_watch` asset is materialized.
This Asset Sensor will trigger a run of `my_job` whenever the `asset_to_watch` asset is materialized.
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
---
title: "Scheduling runs"
title: "Scheduling pipelines"
sidebar_position: 1
---

# Scheduling runs
6 changes: 5 additions & 1 deletion docs/docs-next/docs/guides/automation/schedules.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
---
title: Scheduling Examples
---

### Basic Schedule Example

<CodeExample filePath="guides/automation/simple-schedule-example.py" language="python" title="Simple Schedule Example" />

For more examples of schedules, see the [How-To Use Schedules](/guides/automation/schedules) guide.

For more information about how Schedules work, see the [About Schedules](/concepts/schedules) concept page.
For more information about how Schedules work, see the [About Schedules](/concepts/schedules) concept page.
8 changes: 6 additions & 2 deletions docs/docs-next/docs/guides/automation/sensors.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
### Basic Sensor Example
---
title: Sensor Examples
---

### Basic Sensor Example

This example includes a `check_for_new_files` function that simulates finding new files. In a real scenario, this function would check an actual system or directory.

Expand All @@ -11,4 +15,4 @@ The sensor runs every 5 seconds. If it finds new files, it starts a run of `my_j
By default, sensors aren't enabled when first deployed to a Dagster instance.
Click "Automation" in the top navigation to find and enable a sensor.

:::
:::
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
---
title: "Triggering runs using events"
title: "Creating event-based pipelines"
sidebar_position: 2
---

# Triggering pipeline runs using events

0 comments on commit 4da28c4

Please sign in to comment.