Skip to content

Commit 1df987c

Browse files
authored
feat(components): backfill AI-optimized ai field (batch 1/5) (PipedreamHQ#21872)
1 parent df2d701 commit 1df987c

204 files changed

Lines changed: 404 additions & 404 deletions

File tree

Some content is hidden

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

components/azure_devops/actions/add-pull-request-reviewer/add-pull-request-reviewer.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
// x-pd-ai: optimized
21
import azureDevops from "../../azure_devops.app.mjs";
32
import { PULL_REQUEST_VOTE_OPTIONS } from "../../common/constants.mjs";
43

54
export default {
65
key: "azure_devops-add-pull-request-reviewer",
76
name: "Add Pull Request Reviewer",
87
description: "Add a reviewer to a pull request, optionally marking them required or casting their vote. Returns the reviewer entry including their current vote. Use this to route a pull request to the right owner automatically. Example: pull request `12`, reviewer `8ebabf04-0b08-6a43-9bf4-96e1f4aa3682`, vote `Approved`. [See the documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/git/pull-request-reviewers/create-pull-request-reviewer?view=azure-devops-rest-7.1)",
9-
version: "0.0.1",
8+
version: "0.0.2",
109
type: "action",
10+
ai: "optimized",
1111
annotations: {
1212
destructiveHint: false,
1313
openWorldHint: true,

components/azure_devops/actions/add-work-item-comment/add-work-item-comment.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// x-pd-ai: optimized
21
import azureDevops from "../../azure_devops.app.mjs";
32

43
export default {
54
key: "azure_devops-add-work-item-comment",
65
name: "Add Work Item Comment",
76
description: "Add a comment to a work item's discussion thread. Returns the new comment's id and rendered text. Use this to post automated status back to the item humans are watching, rather than editing its description. Example: work item `299`, comment `Deployed to staging in build 4821`. [See the documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/wit/comments/add?view=azure-devops-rest-7.1)",
8-
version: "0.0.1",
7+
version: "0.0.2",
98
type: "action",
9+
ai: "optimized",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

components/azure_devops/actions/cancel-build/cancel-build.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
// x-pd-ai: optimized
21
import azureDevops from "../../azure_devops.app.mjs";
32
import { BUILD_CANCELLING_STATUS } from "../../common/constants.mjs";
43

54
export default {
65
key: "azure_devops-cancel-build",
76
name: "Cancel Build",
87
description: "Cancel a build that is still running. Returns the build with its status moved to cancelling. Use this to stop a run that has been superseded or was triggered in error. Example: build `4821`. Run the **List Builds** action first to obtain the build id. [See the documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/build/builds/update-build?view=azure-devops-rest-7.1)",
9-
version: "0.0.1",
8+
version: "0.0.2",
109
type: "action",
10+
ai: "optimized",
1111
annotations: {
1212
destructiveHint: false,
1313
openWorldHint: true,

components/azure_devops/actions/create-branch/create-branch.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// x-pd-ai: optimized
21
import { ConfigurationError } from "@pipedream/platform";
32
import azureDevops from "../../azure_devops.app.mjs";
43
import { EMPTY_OBJECT_ID } from "../../common/constants.mjs";
@@ -7,8 +6,9 @@ export default {
76
key: "azure_devops-create-branch",
87
name: "Create Branch",
98
description: "Create a branch pointing at an existing commit. Returns the ref update result. Use this to open a working branch before pushing changes and raising a pull request. Example: new branch `feature/login` at commit `a3fecf65a6766ebc6f2e33b66a1520b827c67ef8`. Run the **List Commits** action first to obtain the commit the branch should point at. [See the documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/git/refs/update-refs?view=azure-devops-rest-7.1)",
10-
version: "0.0.1",
9+
version: "0.0.2",
1110
type: "action",
11+
ai: "optimized",
1212
annotations: {
1313
destructiveHint: false,
1414
openWorldHint: true,

components/azure_devops/actions/create-or-update-file/create-or-update-file.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// x-pd-ai: optimized
21
import { ConfigurationError } from "@pipedream/platform";
32
import azureDevops from "../../azure_devops.app.mjs";
43
import {
@@ -9,8 +8,9 @@ export default {
98
key: "azure_devops-create-or-update-file",
109
name: "Create Or Update File",
1110
description: "Push a single file add, edit or delete to an existing branch, as one commit. Returns the push result including the new commit SHA. The branch must already exist. Use this to commit generated config or docs back to a repository. Example: edit `/docs/README.md` on `main` with commit message `Update setup steps`. [See the documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/git/pushes/create?view=azure-devops-rest-7.1)",
12-
version: "0.0.1",
11+
version: "0.0.2",
1312
type: "action",
13+
ai: "optimized",
1414
annotations: {
1515
destructiveHint: false,
1616
openWorldHint: true,

components/azure_devops/actions/create-or-update-wiki-page/create-or-update-wiki-page.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// x-pd-ai: optimized
21
import azureDevops from "../../azure_devops.app.mjs";
32

43
export default {
54
key: "azure_devops-create-or-update-wiki-page",
65
name: "Create Or Update Wiki Page",
76
description: "Create a wiki page, or replace the content of an existing one. Returns the resulting page and its version. This replaces the whole page rather than appending, so read the page first if you need to preserve existing content. Use this to publish generated documentation. Example: page path `/Runbooks/Deploy`, Markdown content. [See the documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/wiki/pages/create-or-update?view=azure-devops-rest-7.1)",
8-
version: "0.0.1",
7+
version: "0.0.2",
98
type: "action",
9+
ai: "optimized",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

components/azure_devops/actions/create-pipeline/create-pipeline.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// x-pd-ai: optimized
21
import azureDevops from "../../azure_devops.app.mjs";
32
import {
43
PIPELINE_CONFIGURATION_TYPE,
@@ -10,8 +9,9 @@ export default {
109
key: "azure_devops-create-pipeline",
1110
name: "Create Pipeline",
1211
description: "Create a YAML pipeline from a definition file already committed to a Git repository. Returns the new pipeline's id and name. The YAML file must exist before this call - push it first. Use this to register a new service's CI. Example: name `fabrikam-api-CI` from `/azure-pipelines.yml`. [See the documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/pipelines/pipelines/create?view=azure-devops-rest-7.1)",
13-
version: "0.0.1",
12+
version: "0.0.2",
1413
type: "action",
14+
ai: "optimized",
1515
annotations: {
1616
destructiveHint: false,
1717
openWorldHint: true,

components/azure_devops/actions/create-project/create-project.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// x-pd-ai: optimized
21
import azureDevops from "../../azure_devops.app.mjs";
32
import {
43
AGILE_PROCESS_TEMPLATE_ID,
@@ -10,8 +9,9 @@ export default {
109
key: "azure_devops-create-project",
1110
name: "Create Project",
1211
description: "Queue creation of a new project. Project creation is asynchronous, so this returns an operation reference rather than the finished project - poll the project list to see it appear. Use when onboarding a new team or product area. Example: name `Payments Platform`, visibility `private`, Agile process. [See the documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/core/projects/create?view=azure-devops-rest-7.1)",
13-
version: "0.0.1",
12+
version: "0.0.2",
1413
type: "action",
14+
ai: "optimized",
1515
annotations: {
1616
destructiveHint: false,
1717
openWorldHint: true,

components/azure_devops/actions/create-pull-request-comment/create-pull-request-comment.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// x-pd-ai: optimized
21
import { ConfigurationError } from "@pipedream/platform";
32
import azureDevops from "../../azure_devops.app.mjs";
43
import { COMMENT_THREAD_STATUS_OPTIONS } from "../../common/constants.mjs";
@@ -7,8 +6,9 @@ export default {
76
key: "azure_devops-create-pull-request-comment",
87
name: "Create Pull Request Comment",
98
description: "Start a new comment thread on a pull request, either on the overview or anchored to a line in a file. Returns the new thread with its id. Use this to post automated review findings where the reviewer will see them. Example: pull request `12`, file `/src/index.js` line `42`, comment `This drops the null check`. [See the documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/git/pull-request-threads/create?view=azure-devops-rest-7.1)",
10-
version: "0.0.1",
9+
version: "0.0.2",
1110
type: "action",
11+
ai: "optimized",
1212
annotations: {
1313
destructiveHint: false,
1414
openWorldHint: true,

components/azure_devops/actions/create-pull-request/create-pull-request.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// x-pd-ai: optimized
21
import azureDevops from "../../azure_devops.app.mjs";
32

43
export default {
54
key: "azure_devops-create-pull-request",
65
name: "Create Pull Request",
76
description: "Open a pull request between two branches. Returns the new pull request's id and url. Use this after pushing a working branch, to start review. Example: source `refs/heads/feature/login` into target `refs/heads/main`, title `Add SSO login`. [See the documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/git/pull-requests/create?view=azure-devops-rest-7.1)",
8-
version: "0.0.1",
7+
version: "0.0.2",
98
type: "action",
9+
ai: "optimized",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

0 commit comments

Comments
 (0)