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
33 changes: 33 additions & 0 deletions .github/workflows/mermaid-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Mermaid CI

on:
pull_request:
paths:
- "docs/**"
- "scripts/lint-mermaid.mjs"
- "package.json"
- "yarn.lock"
- ".github/workflows/mermaid-ci.yml"

permissions:
contents: read

jobs:
mermaid:
name: Validate Mermaid syntax
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this could be actions/checkout@7 unless we need this specific version.


- name: Setup Node.js Environment
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
uses: actions/setup-node@6

with:
node-version: "24"
cache: "yarn"

- name: Install Dependencies
run: yarn install --frozen-lockfile

- name: Lint Mermaid Diagrams
run: yarn lint:mermaid
3 changes: 3 additions & 0 deletions .github/workflows/vale-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ jobs:
level: info
filter_mode: diff_context
fail_on_error: false
# Scope linting to docs only; do not put the path in vale_flags —
# the action runs `vale ${vale_flags} sync`, so a path there breaks sync.
files: docs
vale_flags: "--config=.vale-ci.ini"
2 changes: 1 addition & 1 deletion docs/design-patterns/early-return-local-activities.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ sequenceDiagram
W->>S: Complete ActivityTask
end

Note over C,W: Client has its response; Phase 2 continues in the background
Note over C,W: Client has its response and Phase 2 continues in the background
```

**Numbered walkthrough:**
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/dotnet/activities/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![.NET SDK Banner](/img/assets/banner-dotnet-temporal.png)

</NoZoom>

## Activities

- [Activity basics](/develop/dotnet/activities/basics)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/dotnet/best-practices/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![.NET SDK Banner](/img/assets/banner-dotnet-temporal.png)

</NoZoom>

## Best practices

- [Error handling](/develop/dotnet/best-practices/error-handling)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/dotnet/client/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![.NET SDK Banner](/img/assets/banner-dotnet-temporal.png)

</NoZoom>

## Temporal Client

- [Temporal Client](/develop/dotnet/client/temporal-client)
4 changes: 4 additions & 0 deletions docs/develop/dotnet/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![.NET](/img/assets/banner-dotnet-temporal.png)

</NoZoom>

## Install and get started

You can find detailed installation instructions for the .NET SDK in the [Quickstart](/develop/dotnet/set-up-your-local-dotnet).
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/dotnet/nexus/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ import { ReleaseNoteHeader } from '@site/src/components';
featureName="nexus"
/>

<NoZoom>

![.NET SDK Banner](/img/assets/banner-dotnet-temporal.png)

</NoZoom>

## Temporal Nexus

- [Quickstart](/develop/dotnet/nexus/quickstart)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/dotnet/platform/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![.NET SDK Banner](/img/assets/banner-dotnet-temporal.png)

</NoZoom>

## Platform

- [Observability](/develop/dotnet/platform/observability)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/dotnet/workers/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![.NET SDK Banner](/img/assets/banner-dotnet-temporal.png)

</NoZoom>

## Workers

- [Worker processes](/develop/dotnet/workers/run-worker-process)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/dotnet/workflows/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![.NET SDK Banner](/img/assets/banner-dotnet-temporal.png)

</NoZoom>

## Workflows

- [Workflow basics](/develop/dotnet/workflows/basics)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/go/activities/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Go SDK Banner](/img/assets/banner-go-temporal.png)

</NoZoom>

## Activities

- [Activity basics](/develop/go/activities/basics)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/go/best-practices/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Go SDK Banner](/img/assets/banner-go-temporal.png)

</NoZoom>

## Best practices

- [Multithreading](/develop/go/best-practices/multithreading)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/go/client/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Go SDK Banner](/img/assets/banner-go-temporal.png)

</NoZoom>

## Temporal Client

- [Temporal Client](/develop/go/client/temporal-client)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/go/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Go SDK Banner](/img/assets/banner-go-temporal.png)

</NoZoom>

## Install and get started

You can find detailed installation instructions for the Go SDK in the [Quickstart](/develop/go/set-up-your-local-go).
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/go/nexus/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ tags:
- Temporal SDKs
---

<NoZoom>

![Go SDK Banner](/img/assets/banner-go-temporal.png)

</NoZoom>

## Temporal Nexus

- [Quickstart](/develop/go/nexus/quickstart)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/go/platform/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Go SDK Banner](/img/assets/banner-go-temporal.png)

</NoZoom>

## Platform

- [Observability](/develop/go/platform/observability)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/go/workers/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Go SDK Banner](/img/assets/banner-go-temporal.png)

</NoZoom>

## Workers

- [Run a Worker](/develop/go/workers/run-worker-process)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/go/workflows/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Go SDK Banner](/img/assets/banner-go-temporal.png)

</NoZoom>

## Workflows

- [Workflow basics](/develop/go/workflows/basics)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/java/activities/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Java SDK Banner](/img/assets/banner-java-temporal.png)

</NoZoom>

## Activities

- [Activity basics](/develop/java/activities/basics)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/java/best-practices/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Java SDK Banner](/img/assets/banner-java-temporal.png)

</NoZoom>

## Best practices

- [Testing](/develop/java/best-practices/testing-suite)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/java/client/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Java SDK Banner](/img/assets/banner-java-temporal.png)

</NoZoom>

## Temporal Client

- [Temporal Client](/develop/java/client/temporal-client)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/java/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Java SDK Banner](/img/assets/banner-java-temporal.png)

</NoZoom>

## Install and get started

You can find detailed installation instructions for the Java SDK in the [Quickstart](/develop/java/set-up-your-local-java).
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/java/nexus/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ tags:
- Temporal SDKs
---

<NoZoom>

![Java SDK Banner](/img/assets/banner-java-temporal.png)

</NoZoom>

## Temporal Nexus

- [Quickstart](/develop/java/nexus/quickstart)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/java/platform/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Java SDK Banner](/img/assets/banner-java-temporal.png)

</NoZoom>

## Platform

- [Observability](/develop/java/platform/observability)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/java/workers/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Java SDK Banner](/img/assets/banner-java-temporal.png)

</NoZoom>

## Workers

- [Run Worker processes](/develop/java/workers/run-worker-process)
4 changes: 4 additions & 0 deletions docs/develop/java/workflows/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![Java SDK Banner](/img/assets/banner-java-temporal.png)

</NoZoom>

## Workflows

- [Workflow basics](/develop/java/workflows/basics)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/php/activities/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![PHP SDK Banner](/img/assets/banner-php-temporal.png)

</NoZoom>

## Activities

- [Activity Basics](/develop/php/activities/basics)
Expand Down
4 changes: 4 additions & 0 deletions docs/develop/php/best-practices/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ tags:

import * as Components from '@site/src/components';

<NoZoom>

![PHP SDK Banner](/img/assets/banner-php-temporal.png)

</NoZoom>

## Best practices

- [Testing](/develop/php/best-practices/testing-suite)
Expand Down
Loading