Skip to content

Commit 17aefcd

Browse files
committed
Merge branch 'main' into nloding-ai-agent-event-handling-link
2 parents ea5529c + 40d872a commit 17aefcd

File tree

2,155 files changed

+582
-112193
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,155 files changed

+582
-112193
lines changed

.github/workflows/build-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
temporary_link_path: .github/workflows/validate-links
1010
steps:
1111
- uses: actions/checkout@v5
12-
- uses: actions/setup-node@v5
12+
- uses: actions/setup-node@v6
1313
with:
1414
node-version: 22
1515
- name: Install Dependencies

.github/workflows/check-format.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v5
9-
- uses: actions/setup-node@v5
9+
- uses: actions/setup-node@v6
1010
with:
1111
node-version: 22
1212
- name: Install Dependencies

.github/workflows/preview-env-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: deploy-preview-env
1616
steps:
1717
- uses: actions/checkout@v5
18-
- uses: actions/setup-node@v5
18+
- uses: actions/setup-node@v6
1919
with:
2020
node-version: 22
2121

.github/workflows/publish-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v5
28-
- uses: actions/setup-node@v5
28+
- uses: actions/setup-node@v6
2929
with:
3030
node-version: 22
3131
- name: Install Dependencies

.github/workflows/publish-stage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v5
18-
- uses: actions/setup-node@v5
18+
- uses: actions/setup-node@v6
1919
with:
2020
node-version: 22
2121
- name: Install Dependencies

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v5
1616

1717
- name: Setup Node.js
18-
uses: actions/setup-node@v5
18+
uses: actions/setup-node@v6
1919
with:
2020
node-version-file: ".nvmrc"
2121
cache: "npm"

.github/workflows/update-release-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v5
2020

2121
- name: Setup Node.js
22-
uses: actions/setup-node@v5
22+
uses: actions/setup-node@v6
2323
with:
2424
node-version: "22"
2525
cache: "npm"

connectors-element-template-links.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,6 @@ https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/mic
9595
https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/microsoft-teams
9696
https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/openai
9797
https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/operate
98-
https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/power-automate
99-
https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/power-automate/#oauth-token-endpoint
10098
https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/rabbitmq
10199
https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/rabbitmq-inbound
102100
https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/rabbitmq/#routing-data

docs/apis-tools/frontend-development/01-task-applications/01-introduction-to-task-applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Typically, a task application utilizes forms to capture information from the use
6161

6262
However, a [user task](/components/modeler/bpmn/user-tasks/user-tasks.md#user-task-forms) is not limited to forms. A user task could also represent navigating to an external desktop or web application, where a task is to be performed, such as updating a record in a CRM. You can even use them to track physical work or actions using sensors, IoT devices, or any interface that can talk to the web, by using the [APIs](/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md) or registering a [job worker](/components/concepts/job-workers.md) to the job type `io.camunda.zeebe:userTask` (compatible with [job worker-based user tasks](/components/modeler/bpmn/user-tasks/user-tasks.md) only).
6363

64-
For these cases, utilize the flexible [custom form key](/components/modeler/web-modeler/advanced-modeling/form-linking.md#custom-form-key).
64+
For these cases, utilize the flexible [custom form key](/components/modeler/web-modeler/modeling/advanced-modeling/form-linking.md#custom-form-key).
6565
:::
6666

6767
On the top of the form, a header shows the title of the task to work on, and the current assignee. Depending on the status of the assignment, a button allows you to assign the task to yourself or release it to the queue.

docs/apis-tools/frontend-development/03-forms/01-introduction-to-forms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import GHIcon from "@site/src/mdx/GitHubInlineIcon";
99

1010
Forms play a key role in giving work instructions, collecting information and making decisions within human task orchestration. Forms are lightweight user interfaces, tailored for focused data input in specific steps of a process, rendering the orchestration of human tasks more efficient than simply routing users to the applications that are orchestrated.
1111

12-
Forms are commonly used in [user tasks](/components/modeler/bpmn/user-tasks/user-tasks.md#user-task-forms), but also as [start forms](/components/tasklist/userguide/starting-processes.md) to start a new process instance, or even as [public forms](/components/modeler/web-modeler/advanced-modeling/publish-public-processes.md), e.g. to capture user input at scale or to allow your customers to trigger a self-service process.
12+
Forms are commonly used in [user tasks](/components/modeler/bpmn/user-tasks/user-tasks.md#user-task-forms), but also as [start forms](/components/tasklist/userguide/starting-processes.md) to start a new process instance, or even as [public forms](/components/modeler/web-modeler/modeling/advanced-modeling/publish-public-processes.md), e.g. to capture user input at scale or to allow your customers to trigger a self-service process.
1313

1414
## Camunda Forms
1515

0 commit comments

Comments
 (0)