Skip to content

Commit 8ad163c

Browse files
committed
Fix wording in note and example title
1 parent 2b9c34b commit 8ad163c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/actions-and-automations/create-self-service-experiences/create-self-service-experiences.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ The basic structure of a self-service action looks like this (see key descriptio
167167

168168
For complete examples of self-service actions using GitHub as the backend, check out the [guides section](/guides?tags=GitHub&tags=Actions).
169169

170-
## Tracking self-service actions
170+
## Track self-service actions
171171

172-
To gain visibility into how your self-service actions are being used and their performance, you can set up tracking for action runs. This allows you to monitor execution patterns, track success rates, and maintain audit trails of who executed what actions and when.
172+
To gain visibility into how your self-service actions are being used and their performance, you can set up tracking for action runs. This allows you to monitor execution patterns, track success rates, and maintain audit trails what actions were executed and when.
173173

174174
The following tracking system works by creating a dedicated blueprint for action runs and setting up an automation that captures execution details whenever a specific self-service action is triggered as well as an automation that updates the action run's status. This approach can give you a centralized view of all action executions in your software catalog.
175175

docs/actions-and-automations/create-self-service-experiences/setup-the-backend/setup-the-backend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ For example, say we have an action with one user input that is the user's name.
5858
```
5959

6060
:::info `.run` available values
61-
At invocation, `.run` contains only the run `id`.
61+
When the action is triggered, the `.run` object includes only the run `id`.
6262
:::
6363

6464
You may have noticed that the example above also sends `{{ .run.id }}`. This is a unique identifier for each execution of the action, and can be used to interact with the action run in Port from your backend.

docs/actions-and-automations/define-automations/setup-action.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Here is an example for an automation payload:
4747
```
4848

4949
:::info `.run` available values
50-
At invocation, `.run` contains only the run `id`.
50+
When the automation is triggered, the `.run` object includes only the run `id`.
5151
:::
5252

5353
You may have noticed that the example above also sends `{{ .run.id }}`. This is a unique identifier for each execution of the automation, and can be used to interact with the automation run in Port from your backend.

0 commit comments

Comments
 (0)