From 735a72b6c012254d1670e4bbedabe14f42fe4545 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Thu, 2 Apr 2026 12:53:11 -0400 Subject: [PATCH 1/4] new actions --- .../list-organization-repositories.mjs | 73 +++++++++++++++++++ .../list-organizations/list-organizations.mjs | 42 +++++++++++ components/github/github.app.mjs | 10 ++- components/github/package.json | 2 +- 4 files changed, 122 insertions(+), 5 deletions(-) create mode 100644 components/github/actions/list-organization-repositories/list-organization-repositories.mjs create mode 100644 components/github/actions/list-organizations/list-organizations.mjs diff --git a/components/github/actions/list-organization-repositories/list-organization-repositories.mjs b/components/github/actions/list-organization-repositories/list-organization-repositories.mjs new file mode 100644 index 0000000000000..e69c1f3e43a6b --- /dev/null +++ b/components/github/actions/list-organization-repositories/list-organization-repositories.mjs @@ -0,0 +1,73 @@ +import github from "../../github.app.mjs"; + +export default { + key: "github-list-organization-repositories", + name: "List Organization Repositories", + description: "List repositories for an organization. [See the documentation](https://docs.github.com/en/rest/repos/repos?apiVersion=2026-03-10#list-organization-repositories)", + version: "0.0.1", + type: "action", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, + props: { + github, + org: { + propDefinition: [ + github, + "orgName", + ], + }, + type: { + type: "string", + label: "Type", + description: "Limit results to repositories of the specified type", + options: [ + "all", + "public", + "private", + "forks", + "sources", + "member", + ], + optional: true, + }, + sort: { + type: "string", + label: "Sort", + description: "The field to sort the results by", + options: [ + "created", + "updated", + "pushed", + "full_name", + ], + optional: true, + }, + direction: { + type: "string", + label: "Direction", + description: "The direction to sort the results by", + options: [ + "asc", + "desc", + ], + optional: true, + }, + }, + async run({ $ }) { + const repositories = await this.github.getOrgRepos({ + org: this.org, + type: this.type, + sort: this.sort, + direction: this.direction, + }); + + $.export("$summary", `Successfully listed ${repositories.length} repositor${repositories.length === 1 + ? "y" + : "ies"}`); + + return repositories; + }, +}; diff --git a/components/github/actions/list-organizations/list-organizations.mjs b/components/github/actions/list-organizations/list-organizations.mjs new file mode 100644 index 0000000000000..1f6b2360032bd --- /dev/null +++ b/components/github/actions/list-organizations/list-organizations.mjs @@ -0,0 +1,42 @@ +import github from "../../github.app.mjs"; + +export default { + key: "github-list-organizations", + name: "List Organizations", + description: "List all organizations in the authenticated user's account. [See the documentation](https://docs.github.com/en/rest/orgs/orgs?apiVersion=2026-03-10#list-organizations-for-the-authenticated-user)", + version: "0.0.1", + type: "action", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, + props: { + github, + }, + async run({ $ }) { + let page = 1; + let perPage = 100; + let allOrganizations = []; + + while (true) { + const organizations = await this.github.getOrganizations({ + page, + perPage, + }); + + if (organizations.length === 0) { + break; + } + + allOrganizations = allOrganizations.concat(organizations); + page += 1; + } + + $.export("$summary", `Successfully listed ${allOrganizations.length} organization${allOrganizations.length === 1 + ? "" + : "s"}`); + + return allOrganizations; + }, +}; diff --git a/components/github/github.app.mjs b/components/github/github.app.mjs index 778fd972ba4b4..c932fe41f853e 100644 --- a/components/github/github.app.mjs +++ b/components/github/github.app.mjs @@ -414,16 +414,18 @@ export default { }) { return this._client().request(`DELETE /orgs/${org}/hooks/${webhookId}`, {}); }, - async getOrganizations() { - const response = await this._client().request("GET /user/orgs", {}); + async getOrganizations(data = {}) { + const response = await this._client().request("GET /user/orgs", data); return response.data; }, async getRepos() { return this._client().paginate("GET /user/repos", {}); }, - async getOrgRepos({ org }) { - return this._client().paginate(`GET /orgs/${org}/repos`, {}); + async getOrgRepos({ + org, ...args + }) { + return this._client().paginate(`GET /orgs/${org}/repos`, args); }, async getRepo({ repoFullname }) { const response = await this._client().request(`GET /repos/${repoFullname}`, {}); diff --git a/components/github/package.json b/components/github/package.json index 3e4d9d907e983..d83844e10dbc0 100644 --- a/components/github/package.json +++ b/components/github/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/github", - "version": "1.11.1", + "version": "1.12.0", "description": "Pipedream GitHub Components", "main": "github.app.mjs", "keywords": [ From 76572e03b1f8b3f1b362870765633f5a907a2863 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Thu, 2 Apr 2026 12:56:49 -0400 Subject: [PATCH 2/4] versions --- components/github/actions/create-branch/create-branch.mjs | 2 +- components/github/actions/create-gist/create-gist.mjs | 2 +- .../actions/create-issue-comment/create-issue-comment.mjs | 2 +- components/github/actions/create-issue/create-issue.mjs | 2 +- .../create-or-update-file-contents.mjs | 2 +- .../actions/create-pull-request/create-pull-request.mjs | 2 +- .../github/actions/create-repository/create-repository.mjs | 2 +- .../create-workflow-dispatch/create-workflow-dispatch.mjs | 2 +- .../github/actions/disable-workflow/disable-workflow.mjs | 2 +- components/github/actions/enable-workflow/enable-workflow.mjs | 2 +- components/github/actions/get-commit/get-commit.mjs | 2 +- .../github/actions/get-current-user/get-current-user.mjs | 2 +- .../actions/get-issue-assignees/get-issue-assignees.mjs | 2 +- components/github/actions/get-issue/get-issue.mjs | 2 +- .../actions/get-repository-content/get-repository-content.mjs | 2 +- components/github/actions/get-repository/get-repository.mjs | 2 +- components/github/actions/get-reviewers/get-reviewers.mjs | 2 +- .../github/actions/get-workflow-run/get-workflow-run.mjs | 2 +- components/github/actions/list-commits/list-commits.mjs | 2 +- .../actions/list-gists-for-a-user/list-gists-for-a-user.mjs | 2 +- components/github/actions/list-releases/list-releases.mjs | 2 +- .../github/actions/list-repositories/list-repositories.mjs | 2 +- .../github/actions/list-workflow-runs/list-workflow-runs.mjs | 2 +- .../search-issues-and-pull-requests.mjs | 2 +- components/github/actions/star-repo/star-repo.mjs | 2 +- .../sync-fork-branch-with-upstream.mjs | 2 +- components/github/actions/update-gist/update-gist.mjs | 2 +- components/github/actions/update-issue/update-issue.mjs | 2 +- .../update-project-v2-item-status.mjs | 2 +- .../actions/update-pull-request/update-pull-request.mjs | 2 +- components/github/sources/new-branch/new-branch.mjs | 2 +- .../github/sources/new-card-in-column/new-card-in-column.mjs | 2 +- .../github/sources/new-collaborator/new-collaborator.mjs | 2 +- .../github/sources/new-commit-comment/new-commit-comment.mjs | 2 +- components/github/sources/new-commit/new-commit.mjs | 2 +- components/github/sources/new-discussion/new-discussion.mjs | 2 +- components/github/sources/new-fork/new-fork.mjs | 2 +- components/github/sources/new-gist/new-gist.mjs | 2 +- .../github/sources/new-issue-comment/new-issue-comment.mjs | 2 +- .../sources/new-issue-with-status/new-issue-with-status.mjs | 2 +- components/github/sources/new-label/new-label.mjs | 2 +- components/github/sources/new-mention/new-mention.mjs | 4 ++-- .../github/sources/new-notification/new-notification.mjs | 4 ++-- .../sources/new-or-updated-issue/new-or-updated-issue.mjs | 2 +- .../new-or-updated-milestone/new-or-updated-milestone.mjs | 2 +- .../new-or-updated-pull-request.mjs | 2 +- .../github/sources/new-organization/new-organization.mjs | 4 ++-- components/github/sources/new-release/new-release.mjs | 2 +- components/github/sources/new-repository/new-repository.mjs | 4 ++-- .../github/sources/new-review-request/new-review-request.mjs | 4 ++-- .../github/sources/new-security-alert/new-security-alert.mjs | 4 ++-- .../github/sources/new-star-by-user/new-star-by-user.mjs | 2 +- components/github/sources/new-star/new-star.mjs | 2 +- components/github/sources/new-team/new-team.mjs | 4 ++-- .../new-workflow-job-completed/new-workflow-job-completed.mjs | 2 +- .../new-workflow-run-completed/new-workflow-run-completed.mjs | 2 +- components/github/sources/webhook-events/webhook-events.mjs | 2 +- 57 files changed, 64 insertions(+), 64 deletions(-) diff --git a/components/github/actions/create-branch/create-branch.mjs b/components/github/actions/create-branch/create-branch.mjs index 3437e7f75740c..d8ad39c22348c 100644 --- a/components/github/actions/create-branch/create-branch.mjs +++ b/components/github/actions/create-branch/create-branch.mjs @@ -5,7 +5,7 @@ export default { key: "github-create-branch", name: "Create Branch", description: "Create a new branch in a GitHub repo. [See the documentation](https://docs.github.com/en/rest/git/refs?apiVersion=2022-11-28#create-a-reference)", - version: "0.0.20", + version: "0.0.21", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/create-gist/create-gist.mjs b/components/github/actions/create-gist/create-gist.mjs index 0ffefa38431ee..a76fa88ec6e53 100644 --- a/components/github/actions/create-gist/create-gist.mjs +++ b/components/github/actions/create-gist/create-gist.mjs @@ -5,7 +5,7 @@ export default { key: "github-create-gist", name: "Create Gist", description: "Allows you to add a new gist with one or more files. [See the documentation](https://docs.github.com/en/rest/gists/gists?apiVersion=2022-11-28#create-a-gist)", - version: "0.0.14", + version: "0.0.15", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/create-issue-comment/create-issue-comment.mjs b/components/github/actions/create-issue-comment/create-issue-comment.mjs index 323f450ffb061..9480a510dc4e9 100644 --- a/components/github/actions/create-issue-comment/create-issue-comment.mjs +++ b/components/github/actions/create-issue-comment/create-issue-comment.mjs @@ -4,7 +4,7 @@ export default { key: "github-create-issue-comment", name: "Create Issue Comment", description: "Create a new comment in a issue. [See the documentation](https://docs.github.com/en/rest/issues/comments#create-an-issue-comment)", - version: "0.0.24", + version: "0.0.25", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/create-issue/create-issue.mjs b/components/github/actions/create-issue/create-issue.mjs index 8cf3633768846..09eccdd9d0fbe 100644 --- a/components/github/actions/create-issue/create-issue.mjs +++ b/components/github/actions/create-issue/create-issue.mjs @@ -6,7 +6,7 @@ export default { key: "github-create-issue", name: "Create Issue", description: "Create a new issue in a GitHub repo. [See the documentation](https://docs.github.com/en/rest/issues/issues#create-an-issue)", - version: "0.3.7", + version: "0.3.8", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/create-or-update-file-contents/create-or-update-file-contents.mjs b/components/github/actions/create-or-update-file-contents/create-or-update-file-contents.mjs index a01c022e72a69..0330e4c74ed8e 100644 --- a/components/github/actions/create-or-update-file-contents/create-or-update-file-contents.mjs +++ b/components/github/actions/create-or-update-file-contents/create-or-update-file-contents.mjs @@ -4,7 +4,7 @@ export default { key: "github-create-or-update-file-contents", name: "Create or Update File Contents", description: "Create or update a file in a repository. [See the documentation](https://docs.github.com/en/rest/repos/contents#create-or-update-file-contents)", - version: "0.1.6", + version: "0.1.7", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/github/actions/create-pull-request/create-pull-request.mjs b/components/github/actions/create-pull-request/create-pull-request.mjs index c7c5a9d5e1e98..8705fd6a0872b 100644 --- a/components/github/actions/create-pull-request/create-pull-request.mjs +++ b/components/github/actions/create-pull-request/create-pull-request.mjs @@ -5,7 +5,7 @@ export default { key: "github-create-pull-request", name: "Create Pull Request", description: "Creates a new pull request for a specified repository. [See the documentation](https://docs.github.com/en/rest/pulls/pulls#create-a-pull-request)", - version: "0.1.6", + version: "0.1.7", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/create-repository/create-repository.mjs b/components/github/actions/create-repository/create-repository.mjs index 2eabdddbe6e4c..6e35b75651824 100644 --- a/components/github/actions/create-repository/create-repository.mjs +++ b/components/github/actions/create-repository/create-repository.mjs @@ -4,7 +4,7 @@ export default { key: "github-create-repository", name: "Create Repository", description: "Creates a new repository for the authenticated user. [See the documentation](https://docs.github.com/en/rest/repos/repos#create-a-repository-for-the-authenticated-user)", - version: "0.0.19", + version: "0.0.20", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/create-workflow-dispatch/create-workflow-dispatch.mjs b/components/github/actions/create-workflow-dispatch/create-workflow-dispatch.mjs index 9bc3e1f1187b2..19713908a892c 100644 --- a/components/github/actions/create-workflow-dispatch/create-workflow-dispatch.mjs +++ b/components/github/actions/create-workflow-dispatch/create-workflow-dispatch.mjs @@ -5,7 +5,7 @@ export default { key: "github-create-workflow-dispatch", name: "Create Workflow Dispatch", description: "Creates a new workflow dispatch event. [See the documentation](https://docs.github.com/en/rest/actions/workflows?apiVersion=2022-11-28#create-a-workflow-dispatch-event)", - version: "0.0.6", + version: "0.0.7", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/disable-workflow/disable-workflow.mjs b/components/github/actions/disable-workflow/disable-workflow.mjs index dfd93a8cfb08b..8c4b7aeb48f3e 100644 --- a/components/github/actions/disable-workflow/disable-workflow.mjs +++ b/components/github/actions/disable-workflow/disable-workflow.mjs @@ -5,7 +5,7 @@ export default { key: "github-disable-workflow", name: "Disable Workflow", description: "Disables a workflow and sets the **state** of the workflow to **disabled_manually**. [See the documentation](https://docs.github.com/en/rest/actions/workflows?apiVersion=2022-11-28#disable-a-workflow)", - version: "0.0.6", + version: "0.0.7", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/github/actions/enable-workflow/enable-workflow.mjs b/components/github/actions/enable-workflow/enable-workflow.mjs index e032bd842ab05..4b0ca730fd52e 100644 --- a/components/github/actions/enable-workflow/enable-workflow.mjs +++ b/components/github/actions/enable-workflow/enable-workflow.mjs @@ -4,7 +4,7 @@ export default { key: "github-enable-workflow", name: "Enable Workflow", description: "Enables a workflow and sets the **state** of the workflow to **active**. [See the documentation](https://docs.github.com/en/rest/actions/workflows?apiVersion=2022-11-28#enable-a-workflow)", - version: "0.0.6", + version: "0.0.7", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/github/actions/get-commit/get-commit.mjs b/components/github/actions/get-commit/get-commit.mjs index 6f3bb21e038e3..feb578b9aff3c 100644 --- a/components/github/actions/get-commit/get-commit.mjs +++ b/components/github/actions/get-commit/get-commit.mjs @@ -4,7 +4,7 @@ export default { key: "github-get-commit", name: "Get Commit", description: "Get a commit in a GitHub repo. [See the documentation](https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28#get-a-commit)", - version: "0.0.4", + version: "0.0.5", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/get-current-user/get-current-user.mjs b/components/github/actions/get-current-user/get-current-user.mjs index 76a3b4d22fdb8..c6b23b0492f59 100644 --- a/components/github/actions/get-current-user/get-current-user.mjs +++ b/components/github/actions/get-current-user/get-current-user.mjs @@ -7,7 +7,7 @@ export default { key: "github-get-current-user", name: "Get Current User", description: "Gather a full snapshot of the authenticated GitHub actor, combining `/user`, `/user/orgs`, and `/user/teams`. Returns profile metadata (login, name, email, company, plan, creation timestamps) and trimmed lists of organizations and teams for quick role awareness. Helpful when you need to validate which user is calling the API, adapt behavior based on their org/team memberships, or provide LLMs with grounding before repository operations. [See the documentation](https://docs.github.com/en/rest/users/users?apiVersion=2022-11-28#get-the-authenticated-user).", - version: "0.0.2", + version: "0.0.3", type: "action", annotations: { destructiveHint: false, diff --git a/components/github/actions/get-issue-assignees/get-issue-assignees.mjs b/components/github/actions/get-issue-assignees/get-issue-assignees.mjs index 30b36a6f4d6de..e9b3a388e659c 100644 --- a/components/github/actions/get-issue-assignees/get-issue-assignees.mjs +++ b/components/github/actions/get-issue-assignees/get-issue-assignees.mjs @@ -4,7 +4,7 @@ export default { key: "github-get-issue-assignees", name: "Get Issue Assignees", description: "Get assignees for an issue in a GitHub repo. [See the documentation](https://docs.github.com/en/rest/issues/issues#get-an-issue)", - version: "0.0.25", + version: "0.0.26", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/get-issue/get-issue.mjs b/components/github/actions/get-issue/get-issue.mjs index 87c31c1bdbe27..af6db3013eb48 100644 --- a/components/github/actions/get-issue/get-issue.mjs +++ b/components/github/actions/get-issue/get-issue.mjs @@ -4,7 +4,7 @@ export default { key: "github-get-issue", name: "Get Issue", description: "Get details of an issue in a GitHub repository. [See the documentation](https://docs.github.com/en/rest/issues/issues?apiVersion=2022-11-28#get-an-issue)", - version: "0.0.1", + version: "0.0.2", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/get-repository-content/get-repository-content.mjs b/components/github/actions/get-repository-content/get-repository-content.mjs index 49ba0151d8d72..3969c9793b5e8 100644 --- a/components/github/actions/get-repository-content/get-repository-content.mjs +++ b/components/github/actions/get-repository-content/get-repository-content.mjs @@ -4,7 +4,7 @@ export default { key: "github-get-repository-content", name: "Get Repository Content", description: "Get the content of a file or directory in a specific repository. [See the documentation](https://docs.github.com/en/rest/repos/contents#get-repository-content)", - version: "0.1.6", + version: "0.1.7", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/get-repository/get-repository.mjs b/components/github/actions/get-repository/get-repository.mjs index b7e3430fbccb1..ae0f458e529dc 100644 --- a/components/github/actions/get-repository/get-repository.mjs +++ b/components/github/actions/get-repository/get-repository.mjs @@ -4,7 +4,7 @@ export default { key: "github-get-repository", name: "Get Repository Info", description: "Get information for a specific repository. [See the documentation](https://docs.github.com/en/rest/repos/repos#get-a-repository)", - version: "0.0.24", + version: "0.0.25", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/get-reviewers/get-reviewers.mjs b/components/github/actions/get-reviewers/get-reviewers.mjs index 0a3cf334c3112..34892ef06ee5e 100644 --- a/components/github/actions/get-reviewers/get-reviewers.mjs +++ b/components/github/actions/get-reviewers/get-reviewers.mjs @@ -6,7 +6,7 @@ export default { key: "github-get-reviewers", name: "Get Reviewers", description: "Get reviewers for a PR ([see documentation](https://docs.github.com/en/rest/pulls/reviews#list-reviews-for-a-pull-request)) or Commit SHA ([see documentation](https://docs.github.com/en/rest/commits/commits#list-pull-requests-associated-with-a-commit)).", - version: "0.1.6", + version: "0.1.7", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/get-workflow-run/get-workflow-run.mjs b/components/github/actions/get-workflow-run/get-workflow-run.mjs index 30880beaf6418..5b4513c51533d 100644 --- a/components/github/actions/get-workflow-run/get-workflow-run.mjs +++ b/components/github/actions/get-workflow-run/get-workflow-run.mjs @@ -4,7 +4,7 @@ export default { key: "github-get-workflow-run", name: "Get Workflow Run", description: "Gets a specific workflow run. [See the documentation](https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28#get-a-workflow-run)", - version: "0.0.6", + version: "0.0.7", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/list-commits/list-commits.mjs b/components/github/actions/list-commits/list-commits.mjs index c2329a8ad66fe..b89dc47c96b26 100644 --- a/components/github/actions/list-commits/list-commits.mjs +++ b/components/github/actions/list-commits/list-commits.mjs @@ -4,7 +4,7 @@ export default { key: "github-list-commits", name: "List Commits", description: "List commits in a GitHub repo. [See the documentation](https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28#list-commits)", - version: "0.0.4", + version: "0.0.5", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/list-gists-for-a-user/list-gists-for-a-user.mjs b/components/github/actions/list-gists-for-a-user/list-gists-for-a-user.mjs index ecdc06b91ef72..c757cad72da4d 100644 --- a/components/github/actions/list-gists-for-a-user/list-gists-for-a-user.mjs +++ b/components/github/actions/list-gists-for-a-user/list-gists-for-a-user.mjs @@ -5,7 +5,7 @@ export default { key: "github-list-gists-for-a-user", name: "List Gists for a User", description: "Lists public gists for the specified user. [See the documentation](https://docs.github.com/en/rest/gists/gists?apiVersion=2022-11-28#list-gists-for-a-user)", - version: "0.1.6", + version: "0.1.7", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/list-releases/list-releases.mjs b/components/github/actions/list-releases/list-releases.mjs index 95e87a77c4034..481a5b0b85c11 100644 --- a/components/github/actions/list-releases/list-releases.mjs +++ b/components/github/actions/list-releases/list-releases.mjs @@ -4,7 +4,7 @@ export default { key: "github-list-releases", name: "List Releases", description: "List releases for a repository [See the documentation](https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#list-releases)", - version: "0.0.12", + version: "0.0.13", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/list-repositories/list-repositories.mjs b/components/github/actions/list-repositories/list-repositories.mjs index 5eb00eccd51a7..cad44c9d9b517 100644 --- a/components/github/actions/list-repositories/list-repositories.mjs +++ b/components/github/actions/list-repositories/list-repositories.mjs @@ -5,7 +5,7 @@ export default { key: "github-list-repositories", name: "List Repositories", description: "List repositories that the authenticated user has access to. [See the documentation](https://docs.github.com/en/rest/repos/repos?apiVersion=2026-03-10#list-repositories-for-the-authenticated-user)", - version: "0.0.1", + version: "0.0.2", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/list-workflow-runs/list-workflow-runs.mjs b/components/github/actions/list-workflow-runs/list-workflow-runs.mjs index a567071da53e3..e3a6a0c7ce27b 100644 --- a/components/github/actions/list-workflow-runs/list-workflow-runs.mjs +++ b/components/github/actions/list-workflow-runs/list-workflow-runs.mjs @@ -4,7 +4,7 @@ export default { key: "github-list-workflow-runs", name: "List Workflow Runs", description: "List workflowRuns for a repository [See the documentation](https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28#list-workflow-runs-for-a-repository)", - version: "0.0.6", + version: "0.0.7", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/search-issues-and-pull-requests/search-issues-and-pull-requests.mjs b/components/github/actions/search-issues-and-pull-requests/search-issues-and-pull-requests.mjs index 3eaa33b61efc9..6ace5ec7cef8c 100644 --- a/components/github/actions/search-issues-and-pull-requests/search-issues-and-pull-requests.mjs +++ b/components/github/actions/search-issues-and-pull-requests/search-issues-and-pull-requests.mjs @@ -4,7 +4,7 @@ export default { key: "github-search-issues-and-pull-requests", name: "Search Issues and Pull Requests", description: "Find issues and pull requests by state and keyword. [See the documentation](https://docs.github.com/en/search-github/searching-on-github/searching-issues-and-pull-requests)", - version: "0.2.8", + version: "0.2.9", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/star-repo/star-repo.mjs b/components/github/actions/star-repo/star-repo.mjs index 01528ba3f6075..fb7a6bb0148c8 100644 --- a/components/github/actions/star-repo/star-repo.mjs +++ b/components/github/actions/star-repo/star-repo.mjs @@ -5,7 +5,7 @@ export default { key: "github-star-repo", name: "Star Repo", description: "Star a repository. [See the docs](https://docs.github.com/en/rest/activity/starring?apiVersion=2022-11-28#star-a-repository-for-the-authenticated-user) for more info.", - version: "0.0.6", + version: "0.0.7", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/github/actions/sync-fork-branch-with-upstream/sync-fork-branch-with-upstream.mjs b/components/github/actions/sync-fork-branch-with-upstream/sync-fork-branch-with-upstream.mjs index 833bcd98d7a50..c5e065823a92b 100644 --- a/components/github/actions/sync-fork-branch-with-upstream/sync-fork-branch-with-upstream.mjs +++ b/components/github/actions/sync-fork-branch-with-upstream/sync-fork-branch-with-upstream.mjs @@ -4,7 +4,7 @@ export default { key: "github-sync-fork-branch-with-upstream", name: "Sync Fork Branch with Upstream", description: "Sync a forked branch with the upstream branch. [See the documentation](https://docs.github.com/en/rest/branches/branches?apiVersion=2022-11-28#sync-a-fork-branch-with-the-upstream-repository)", - version: "0.0.1", + version: "0.0.2", type: "action", annotations: { destructiveHint: true, diff --git a/components/github/actions/update-gist/update-gist.mjs b/components/github/actions/update-gist/update-gist.mjs index c3d7c6cf797ef..d963d82b6c69c 100644 --- a/components/github/actions/update-gist/update-gist.mjs +++ b/components/github/actions/update-gist/update-gist.mjs @@ -6,7 +6,7 @@ export default { key: "github-update-gist", name: "Update Gist", description: "Allows you to update a gist's description and to update, delete, or rename gist files. [See the documentation](https://docs.github.com/en/rest/gists/gists?apiVersion=2022-11-28#update-a-gist)", - version: "0.0.14", + version: "0.0.15", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/github/actions/update-issue/update-issue.mjs b/components/github/actions/update-issue/update-issue.mjs index 067d403c8d30e..a128fcbcc0757 100644 --- a/components/github/actions/update-issue/update-issue.mjs +++ b/components/github/actions/update-issue/update-issue.mjs @@ -10,7 +10,7 @@ export default { key: "github-update-issue", name: "Update Issue", description: "Update a new issue in a GitHub repo. [See the documentation](https://docs.github.com/en/rest/issues/issues#update-an-issue)", - version: "0.2.7", + version: "0.2.8", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/github/actions/update-project-v2-item-status/update-project-v2-item-status.mjs b/components/github/actions/update-project-v2-item-status/update-project-v2-item-status.mjs index 4c0ee8272a3cb..aa547b6f2ed1b 100644 --- a/components/github/actions/update-project-v2-item-status/update-project-v2-item-status.mjs +++ b/components/github/actions/update-project-v2-item-status/update-project-v2-item-status.mjs @@ -4,7 +4,7 @@ export default { key: "github-update-project-v2-item-status", name: "Update Project (V2) Item Status", description: "Update the status of an item in the selected Project (V2). [See the documentation](https://docs.github.com/en/graphql/reference/mutations#updateprojectv2itemfieldvalue)", - version: "0.0.9", + version: "0.0.10", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/github/actions/update-pull-request/update-pull-request.mjs b/components/github/actions/update-pull-request/update-pull-request.mjs index c785ace6b47dd..ded4ea9fbd2b0 100644 --- a/components/github/actions/update-pull-request/update-pull-request.mjs +++ b/components/github/actions/update-pull-request/update-pull-request.mjs @@ -4,7 +4,7 @@ export default { key: "github-update-pull-request", name: "Update Pull Request", description: "Updates an existing pull request with new title, body, state, or base branch. [See the documentation](https://docs.github.com/en/rest/pulls/pulls#update-a-pull-request)", - version: "0.0.1", + version: "0.0.2", type: "action", annotations: { destructiveHint: true, diff --git a/components/github/sources/new-branch/new-branch.mjs b/components/github/sources/new-branch/new-branch.mjs index 4c4dcda496439..2ecebd3b0016a 100644 --- a/components/github/sources/new-branch/new-branch.mjs +++ b/components/github/sources/new-branch/new-branch.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-branch", name: "New Branch Created", description: "Emit new event when a branch is created.", - version: "1.0.12", + version: "1.0.13", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-card-in-column/new-card-in-column.mjs b/components/github/sources/new-card-in-column/new-card-in-column.mjs index 5ab0d1fed9b08..5dc9d449e07fc 100644 --- a/components/github/sources/new-card-in-column/new-card-in-column.mjs +++ b/components/github/sources/new-card-in-column/new-card-in-column.mjs @@ -7,7 +7,7 @@ export default { key: "github-new-card-in-column", name: "New Card in Column (Classic Projects)", description: "Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use `New Issue with Status` trigger. [More information here](https://docs.github.com/en/issues/organizing-your-work-with-project-boards/tracking-work-with-project-boards/adding-issues-and-pull-requests-to-a-project-board)", - version: "1.0.11", + version: "1.0.12", type: "source", props: { ...common.props, diff --git a/components/github/sources/new-collaborator/new-collaborator.mjs b/components/github/sources/new-collaborator/new-collaborator.mjs index 0cbb80e40ab7f..8ac07c88eee67 100644 --- a/components/github/sources/new-collaborator/new-collaborator.mjs +++ b/components/github/sources/new-collaborator/new-collaborator.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-collaborator", name: "New Collaborator", description: "Emit new event when a collaborator is added", - version: "1.0.12", + version: "1.0.13", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-commit-comment/new-commit-comment.mjs b/components/github/sources/new-commit-comment/new-commit-comment.mjs index b61a3a531dfaf..dffd79b2a2d12 100644 --- a/components/github/sources/new-commit-comment/new-commit-comment.mjs +++ b/components/github/sources/new-commit-comment/new-commit-comment.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-commit-comment", name: "New Commit Comment", description: "Emit new event when a commit comment is created", - version: "1.0.12", + version: "1.0.13", type: "source", dedupe: "unique", props: { diff --git a/components/github/sources/new-commit/new-commit.mjs b/components/github/sources/new-commit/new-commit.mjs index 0cc1256d37aae..6bf19f03d93e7 100644 --- a/components/github/sources/new-commit/new-commit.mjs +++ b/components/github/sources/new-commit/new-commit.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-commit", name: "New Commit", description: "Emit new event when commits are pushed to a branch", - version: "1.0.13", + version: "1.0.14", type: "source", dedupe: "unique", props: { diff --git a/components/github/sources/new-discussion/new-discussion.mjs b/components/github/sources/new-discussion/new-discussion.mjs index 499c2a34c1b6d..7095f04c10704 100644 --- a/components/github/sources/new-discussion/new-discussion.mjs +++ b/components/github/sources/new-discussion/new-discussion.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-discussion", name: "New Discussion", description: "Emit new event when a discussion is created", - version: "1.0.12", + version: "1.0.13", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-fork/new-fork.mjs b/components/github/sources/new-fork/new-fork.mjs index ed78f1ba37db9..eb327beacd3ab 100644 --- a/components/github/sources/new-fork/new-fork.mjs +++ b/components/github/sources/new-fork/new-fork.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-fork", name: "New Fork", description: "Emit new event when a repository is forked", - version: "1.0.12", + version: "1.0.13", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-gist/new-gist.mjs b/components/github/sources/new-gist/new-gist.mjs index 452486569e4e1..d092c7e5a2269 100644 --- a/components/github/sources/new-gist/new-gist.mjs +++ b/components/github/sources/new-gist/new-gist.mjs @@ -5,7 +5,7 @@ export default { key: "github-new-gist", name: "New Gist", description: "Emit new events when new gists are created by the authenticated user. [See the documentation](https://docs.github.com/en/rest/gists/gists?apiVersion=20.2.61-28#list-gists-for-the-authenticated-user)", - version: "0.2.7", + version: "0.2.8", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-issue-comment/new-issue-comment.mjs b/components/github/sources/new-issue-comment/new-issue-comment.mjs index fdf2fa3867229..18c7a4395016b 100644 --- a/components/github/sources/new-issue-comment/new-issue-comment.mjs +++ b/components/github/sources/new-issue-comment/new-issue-comment.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-issue-comment", name: "New Issue Comment", description: "Emit new event when a new comment is added to an issue or pull request", - version: "0.0.4", + version: "0.0.5", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-issue-with-status/new-issue-with-status.mjs b/components/github/sources/new-issue-with-status/new-issue-with-status.mjs index 35b2267cb1df4..319277f8a4b13 100644 --- a/components/github/sources/new-issue-with-status/new-issue-with-status.mjs +++ b/components/github/sources/new-issue-with-status/new-issue-with-status.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-issue-with-status", name: "Project Item Status Changed", description: "Emit new event when a project item is tagged with a specific status. Currently supports Organization Projects only. [More information here](https://docs.github.com/en/issues/planning-and-tracking-with-projects/managing-items-in-your-project/adding-items-to-your-project)", - version: "0.1.10", + version: "0.1.11", type: "source", dedupe: "unique", props: { diff --git a/components/github/sources/new-label/new-label.mjs b/components/github/sources/new-label/new-label.mjs index beaa90ac6c7a0..ecfd27d0b0c09 100644 --- a/components/github/sources/new-label/new-label.mjs +++ b/components/github/sources/new-label/new-label.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-label", name: "New Label", description: "Emit new event when a new label is created", - version: "1.0.12", + version: "1.0.13", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-mention/new-mention.mjs b/components/github/sources/new-mention/new-mention.mjs index 85cddf5d1a395..c8b6f1c750b16 100644 --- a/components/github/sources/new-mention/new-mention.mjs +++ b/components/github/sources/new-mention/new-mention.mjs @@ -4,8 +4,8 @@ export default { ...common, key: "github-new-mention", name: "New Mention", - description: "Emit new event when you are @mentioned in a new commit, comment, issue or pull request. [See the documentation](https://docs.github.com/en/rest/activity/notifications?apiVersion=20.2.61-28#list-notifications-for-the-authenticated-user)", - version: "0.2.6", + description: "Emit new event when you are @mentioned in a new commit, comment, issue or pull request. [See the documentation](https://docs.github.com/en/rest/activity/notifications?apiVersion=20.2.71-28#list-notifications-for-the-authenticated-user)", + version: "0.2.7", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-notification/new-notification.mjs b/components/github/sources/new-notification/new-notification.mjs index 40532fd5670d4..067b8bee5b1c7 100644 --- a/components/github/sources/new-notification/new-notification.mjs +++ b/components/github/sources/new-notification/new-notification.mjs @@ -4,8 +4,8 @@ export default { ...common, key: "github-new-notification", name: "New Notification", - description: "Emit new event when the authenticated user receives a new notification. [See the documentation](https://docs.github.com/en/rest/activity/notifications?apiVersion=20.2.61-28#list-notifications-for-the-authenticated-user)", - version: "0.2.6", + description: "Emit new event when the authenticated user receives a new notification. [See the documentation](https://docs.github.com/en/rest/activity/notifications?apiVersion=20.2.71-28#list-notifications-for-the-authenticated-user)", + version: "0.2.7", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-or-updated-issue/new-or-updated-issue.mjs b/components/github/sources/new-or-updated-issue/new-or-updated-issue.mjs index 3beb620290ef6..73a4082823ae0 100644 --- a/components/github/sources/new-or-updated-issue/new-or-updated-issue.mjs +++ b/components/github/sources/new-or-updated-issue/new-or-updated-issue.mjs @@ -9,7 +9,7 @@ export default { key: "github-new-or-updated-issue", name: "New or Updated Issue", description: "Emit new events when an issue is created or updated", - version: "1.1.9", + version: "1.1.10", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-or-updated-milestone/new-or-updated-milestone.mjs b/components/github/sources/new-or-updated-milestone/new-or-updated-milestone.mjs index bafc933f8ba30..5e07b66dde8e4 100644 --- a/components/github/sources/new-or-updated-milestone/new-or-updated-milestone.mjs +++ b/components/github/sources/new-or-updated-milestone/new-or-updated-milestone.mjs @@ -9,7 +9,7 @@ export default { key: "github-new-or-updated-milestone", name: "New or Updated Milestone", description: "Emit new event when a milestone is created or updated", - version: "1.1.9", + version: "1.1.10", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-or-updated-pull-request/new-or-updated-pull-request.mjs b/components/github/sources/new-or-updated-pull-request/new-or-updated-pull-request.mjs index 82e555eac855c..6f453edff124a 100644 --- a/components/github/sources/new-or-updated-pull-request/new-or-updated-pull-request.mjs +++ b/components/github/sources/new-or-updated-pull-request/new-or-updated-pull-request.mjs @@ -9,7 +9,7 @@ export default { key: "github-new-or-updated-pull-request", name: "New or Updated Pull Request", description: "Emit new event when a pull request is opened or updated", - version: "1.2.9", + version: "1.2.10", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-organization/new-organization.mjs b/components/github/sources/new-organization/new-organization.mjs index 41ea2cfbc7d23..963e01401ab1b 100644 --- a/components/github/sources/new-organization/new-organization.mjs +++ b/components/github/sources/new-organization/new-organization.mjs @@ -4,8 +4,8 @@ export default { ...common, key: "github-new-organization", name: "New Organization", - description: "Emit new event when the authenticated user is added to a new organization. [See the documentation](https://docs.github.com/en/rest/orgs/orgs?apiVersion=20.2.61-28#list-organizations-for-the-authenticated-user)", - version: "0.2.6", + description: "Emit new event when the authenticated user is added to a new organization. [See the documentation](https://docs.github.com/en/rest/orgs/orgs?apiVersion=20.2.71-28#list-organizations-for-the-authenticated-user)", + version: "0.2.7", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-release/new-release.mjs b/components/github/sources/new-release/new-release.mjs index baaed19f8f61d..672b766ff11f4 100644 --- a/components/github/sources/new-release/new-release.mjs +++ b/components/github/sources/new-release/new-release.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-release", name: "New release", description: "Emit new event when a new release is created", - version: "1.0.12", + version: "1.0.13", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-repository/new-repository.mjs b/components/github/sources/new-repository/new-repository.mjs index e57d4f48728be..445f1c8254b7f 100644 --- a/components/github/sources/new-repository/new-repository.mjs +++ b/components/github/sources/new-repository/new-repository.mjs @@ -4,8 +4,8 @@ export default { ...common, key: "github-new-repository", name: "New Repository", - description: "Emit new event when a new repository is created or when the authenticated user receives access. [See the documentation](https://docs.github.com/en/rest/repos/repos?apiVersion=20.2.61-28#list-repositories-for-the-authenticated-user)", - version: "0.2.6", + description: "Emit new event when a new repository is created or when the authenticated user receives access. [See the documentation](https://docs.github.com/en/rest/repos/repos?apiVersion=20.2.71-28#list-repositories-for-the-authenticated-user)", + version: "0.2.7", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-review-request/new-review-request.mjs b/components/github/sources/new-review-request/new-review-request.mjs index 811fcf0d3ad35..ec0361b7ffaca 100644 --- a/components/github/sources/new-review-request/new-review-request.mjs +++ b/components/github/sources/new-review-request/new-review-request.mjs @@ -4,8 +4,8 @@ export default { ...common, key: "github-new-review-request", name: "New Review Request", - description: "Emit new event for new review request notifications. [See the documentation](https://docs.github.com/en/rest/activity/notifications?apiVersion=20.2.61-28#list-notifications-for-the-authenticated-user)", - version: "0.2.6", + description: "Emit new event for new review request notifications. [See the documentation](https://docs.github.com/en/rest/activity/notifications?apiVersion=20.2.71-28#list-notifications-for-the-authenticated-user)", + version: "0.2.7", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-security-alert/new-security-alert.mjs b/components/github/sources/new-security-alert/new-security-alert.mjs index 4173e0e9a583a..4818b4816f112 100644 --- a/components/github/sources/new-security-alert/new-security-alert.mjs +++ b/components/github/sources/new-security-alert/new-security-alert.mjs @@ -4,8 +4,8 @@ export default { ...common, key: "github-new-security-alert", name: "New Security Alert", - description: "Emit new event for security alert notifications. [See the documentation](https://docs.github.com/en/rest/activity/notifications?apiVersion=20.2.61-28#list-notifications-for-the-authenticated-user)", - version: "0.2.6", + description: "Emit new event for security alert notifications. [See the documentation](https://docs.github.com/en/rest/activity/notifications?apiVersion=20.2.71-28#list-notifications-for-the-authenticated-user)", + version: "0.2.7", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-star-by-user/new-star-by-user.mjs b/components/github/sources/new-star-by-user/new-star-by-user.mjs index 44784b6d639ef..0b3ac640e9c08 100644 --- a/components/github/sources/new-star-by-user/new-star-by-user.mjs +++ b/components/github/sources/new-star-by-user/new-star-by-user.mjs @@ -5,7 +5,7 @@ export default { key: "github-new-star-by-user", name: "New Star By User", description: "Emit new events when the specified user stars a repository. [See the documentation](https://docs.github.com/en/rest/activity/starring?apiVersion=2022-11-28#list-repositories-starred-by-a-user)", - version: "0.0.11", + version: "0.0.12", type: "source", dedupe: "unique", props: { diff --git a/components/github/sources/new-star/new-star.mjs b/components/github/sources/new-star/new-star.mjs index 7157058b336d1..06f1c56ff8a47 100644 --- a/components/github/sources/new-star/new-star.mjs +++ b/components/github/sources/new-star/new-star.mjs @@ -8,7 +8,7 @@ export default { key: "github-new-star", name: "New Stars", description: "Emit new event when a repository is starred", - version: "1.0.12", + version: "1.0.13", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-team/new-team.mjs b/components/github/sources/new-team/new-team.mjs index 255c94e9c5e64..2b15445ced7fc 100644 --- a/components/github/sources/new-team/new-team.mjs +++ b/components/github/sources/new-team/new-team.mjs @@ -4,8 +4,8 @@ export default { ...common, key: "github-new-team", name: "New Team", - description: "Emit new event when the authenticated user is added to a new team. [See the documentation](https://docs.github.com/en/rest/teams/teams?apiVersion=20.2.61-28#list-teams-for-the-authenticated-user)", - version: "0.2.6", + description: "Emit new event when the authenticated user is added to a new team. [See the documentation](https://docs.github.com/en/rest/teams/teams?apiVersion=20.2.71-28#list-teams-for-the-authenticated-user)", + version: "0.2.7", type: "source", dedupe: "unique", methods: { diff --git a/components/github/sources/new-workflow-job-completed/new-workflow-job-completed.mjs b/components/github/sources/new-workflow-job-completed/new-workflow-job-completed.mjs index a4a864a1c9679..e7aedb40a7799 100644 --- a/components/github/sources/new-workflow-job-completed/new-workflow-job-completed.mjs +++ b/components/github/sources/new-workflow-job-completed/new-workflow-job-completed.mjs @@ -7,7 +7,7 @@ export default { name: "New Workflow Job Completed (Instant)", description: "Emit new event when a job in a workflow is completed, regardless of whether the job was successful or unsuccessful.", type: "source", - version: "0.0.6", + version: "0.0.7", dedupe: "unique", methods: { ...common.methods, diff --git a/components/github/sources/new-workflow-run-completed/new-workflow-run-completed.mjs b/components/github/sources/new-workflow-run-completed/new-workflow-run-completed.mjs index 4cc445ca87b97..bc24042bf63a0 100644 --- a/components/github/sources/new-workflow-run-completed/new-workflow-run-completed.mjs +++ b/components/github/sources/new-workflow-run-completed/new-workflow-run-completed.mjs @@ -7,7 +7,7 @@ export default { name: "New Workflow Run Completed (Instant)", description: "Emit new event when a GitHub Actions workflow run completes", type: "source", - version: "0.0.6", + version: "0.0.7", dedupe: "unique", methods: { ...common.methods, diff --git a/components/github/sources/webhook-events/webhook-events.mjs b/components/github/sources/webhook-events/webhook-events.mjs index d4df4b2153021..ad15f1bb262d9 100644 --- a/components/github/sources/webhook-events/webhook-events.mjs +++ b/components/github/sources/webhook-events/webhook-events.mjs @@ -8,7 +8,7 @@ export default { name: "New Webhook Event (Instant)", description: "Emit new event for each selected event type", type: "source", - version: "1.0.13", + version: "1.0.14", dedupe: "unique", props: { docsInfo: { From ca9420ad6010066b0328953365713fe41cbe5822 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Thu, 2 Apr 2026 13:11:37 -0400 Subject: [PATCH 3/4] update --- .../github/actions/list-organizations/list-organizations.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/github/actions/list-organizations/list-organizations.mjs b/components/github/actions/list-organizations/list-organizations.mjs index 1f6b2360032bd..603484ea15447 100644 --- a/components/github/actions/list-organizations/list-organizations.mjs +++ b/components/github/actions/list-organizations/list-organizations.mjs @@ -22,7 +22,7 @@ export default { while (true) { const organizations = await this.github.getOrganizations({ page, - perPage, + per_page: perPage, }); if (organizations.length === 0) { From ab30ecd2085b86fa7a8a39f412f43069a8587932 Mon Sep 17 00:00:00 2001 From: michelle0927 Date: Thu, 2 Apr 2026 13:17:14 -0400 Subject: [PATCH 4/4] Update components/github/actions/list-organizations/list-organizations.mjs Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .../github/actions/list-organizations/list-organizations.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/github/actions/list-organizations/list-organizations.mjs b/components/github/actions/list-organizations/list-organizations.mjs index 603484ea15447..c4af49193e24a 100644 --- a/components/github/actions/list-organizations/list-organizations.mjs +++ b/components/github/actions/list-organizations/list-organizations.mjs @@ -16,7 +16,7 @@ export default { }, async run({ $ }) { let page = 1; - let perPage = 100; + const perPage = 100; let allOrganizations = []; while (true) {