diff --git a/components/github/actions/create-branch/create-branch.mjs b/components/github/actions/create-branch/create-branch.mjs index cb9d9f8517c8b..c127a40e0ee63 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.16", + version: "0.0.17", type: "action", props: { github, diff --git a/components/github/actions/create-gist/create-gist.mjs b/components/github/actions/create-gist/create-gist.mjs index 4ccc2645a23ea..c74028753510c 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.10", + version: "0.0.11", type: "action", props: { github, 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 8ea9eb0ce2d0d..79be2d88577dd 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.21", + version: "0.0.22", type: "action", props: { github, diff --git a/components/github/actions/create-issue/create-issue.mjs b/components/github/actions/create-issue/create-issue.mjs index ef98147f27b8e..34c12fbe810c0 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 Gihub repo. [See the documentation](https://docs.github.com/en/rest/issues/issues#create-an-issue)", - version: "0.3.3", + version: "0.3.4", type: "action", props: { github, 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 90aa504dcc593..2756d4d4ed2bc 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.3", + version: "0.1.4", type: "action", props: { github, 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 9d1040a85902e..8ae2716703dff 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.3", + version: "0.1.4", type: "action", props: { github, diff --git a/components/github/actions/create-repository/create-repository.mjs b/components/github/actions/create-repository/create-repository.mjs index 1a214131df7c7..303c4b8f1a0a3 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.16", + version: "0.0.17", type: "action", props: { github, 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 97b8a7347aa13..1cc14fd83390c 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.3", + version: "0.0.4", type: "action", props: { github, diff --git a/components/github/actions/disable-workflow/disable-workflow.mjs b/components/github/actions/disable-workflow/disable-workflow.mjs index ed4e70ca45c8a..ec3128a251b39 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.3", + version: "0.0.4", type: "action", props: { github, diff --git a/components/github/actions/enable-workflow/enable-workflow.mjs b/components/github/actions/enable-workflow/enable-workflow.mjs index 9a4fc238face9..62414c139f4b3 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.3", + version: "0.0.4", type: "action", props: { github, diff --git a/components/github/actions/get-commit/get-commit.mjs b/components/github/actions/get-commit/get-commit.mjs new file mode 100644 index 0000000000000..4ed725fc21f14 --- /dev/null +++ b/components/github/actions/get-commit/get-commit.mjs @@ -0,0 +1,37 @@ +import github from "../../github.app.mjs"; + +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.1", + type: "action", + props: { + github, + repoFullname: { + propDefinition: [ + github, + "repoFullname", + ], + }, + commitSha: { + propDefinition: [ + github, + "commitSha", + (c) => ({ + repoFullname: c.repoFullname, + }), + ], + }, + }, + async run({ $ }) { + const commit = await this.github.getCommit({ + repoFullname: this.repoFullname, + commitRef: this.commitSha, + }); + + $.export("$summary", `Successfully retrieved commit ${this.commitSha}`); + + return commit; + }, +}; 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 c310f97629f9c..be2e7bec91819 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 Gihub repo. [See the documentation](https://docs.github.com/en/rest/issues/issues#get-an-issue)", - version: "0.0.21", + version: "0.0.22", type: "action", props: { github, 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 081d3eda53daa..3ea31c93374ca 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.3", + version: "0.1.4", type: "action", props: { github, diff --git a/components/github/actions/get-repository/get-repository.mjs b/components/github/actions/get-repository/get-repository.mjs index 64e295dc68fe8..000818601b45d 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.21", + version: "0.0.22", type: "action", props: { github, diff --git a/components/github/actions/get-reviewers/get-reviewers.mjs b/components/github/actions/get-reviewers/get-reviewers.mjs index 8c9ed6752905d..c6a35c5c19a91 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.3", + version: "0.1.4", type: "action", props: { github, 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 d39df37076c48..86019833683a5 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.3", + version: "0.0.4", type: "action", props: { github, diff --git a/components/github/actions/list-commits/list-commits.mjs b/components/github/actions/list-commits/list-commits.mjs new file mode 100644 index 0000000000000..978085523c6e9 --- /dev/null +++ b/components/github/actions/list-commits/list-commits.mjs @@ -0,0 +1,82 @@ +import github from "../../github.app.mjs"; + +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.1", + type: "action", + props: { + github, + repoFullname: { + propDefinition: [ + github, + "repoFullname", + ], + }, + sha: { + propDefinition: [ + github, + "branchSha", + (c) => ({ + repoFullname: c.repoFullname, + }), + ], + description: "SHA or branch to start listing commits from. Default: the repository's default branch (usually main).", + optional: true, + }, + path: { + type: "string", + label: "Path", + description: "Only commits containing this file path will be returned", + optional: true, + }, + author: { + type: "string", + label: "Author", + description: "GitHub username or email address to use to filter by commit author.", + optional: true, + }, + committer: { + type: "string", + label: "Committer", + description: "GitHub username or email address to use to filter by commit committer", + optional: true, + }, + since: { + type: "string", + label: "Since", + description: "Only show results that were last updated after the given time. This is a timestamp in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`", + optional: true, + }, + until: { + type: "string", + label: "Until", + description: "Only commits before this date will be returned. This is a timestamp in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`", + optional: true, + }, + maxResults: { + type: "integer", + label: "Max Results", + description: "The maximum number of results to return. Defaults: `100`", + default: 100, + optional: true, + }, + }, + async run({ $ }) { + const commits = await this.github.listCommits({ + repoFullname: this.repoFullname, + sha: this.sha, + path: this.path, + author: this.author, + committer: this.committer, + since: this.since, + until: this.until, + per_page: this.maxResults, + }); + + $.export("$summary", `Successfully retrieved ${commits.length} commits.`); + + return commits; + }, +}; 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 9db33173d53e8..7a7fcd4a594cb 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.3", + version: "0.1.4", type: "action", props: { github: { diff --git a/components/github/actions/list-releases/list-releases.mjs b/components/github/actions/list-releases/list-releases.mjs index 03ee092dcb04c..65eb7ea0f4940 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.9", + version: "0.0.10", type: "action", props: { github, 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 49e3e9529e41c..03fc3ad5904ce 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.3", + version: "0.0.4", type: "action", props: { github, 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 83666e2af4e91..474d3fe172cd5 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.5", + version: "0.2.6", type: "action", props: { github, diff --git a/components/github/actions/star-repo/star-repo.mjs b/components/github/actions/star-repo/star-repo.mjs index 8ffeba4270291..32b01fa29da28 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.3", + version: "0.0.4", type: "action", props: { github, diff --git a/components/github/actions/update-gist/update-gist.mjs b/components/github/actions/update-gist/update-gist.mjs index 108cd40d45203..e6ef18d62e148 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.10", + version: "0.0.11", type: "action", props: { github, diff --git a/components/github/actions/update-issue/update-issue.mjs b/components/github/actions/update-issue/update-issue.mjs index 4616b82f68000..b9ec08b6e1704 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 Gihub repo. [See the documentation](https://docs.github.com/en/rest/issues/issues#update-an-issue)", - version: "0.2.3", + version: "0.2.4", type: "action", props: { github, 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 5fd11db74f1ae..6b3532a0f130e 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.5", + version: "0.0.6", type: "action", props: { github, diff --git a/components/github/github.app.mjs b/components/github/github.app.mjs index c1c119be11246..944680ba45ca0 100644 --- a/components/github/github.app.mjs +++ b/components/github/github.app.mjs @@ -314,6 +314,40 @@ export default { })); }, }, + branchSha: { + label: "Branch SHA", + description: "SHA of a branch", + type: "string", + async options({ + page, repoFullname, + }) { + const branches = await this.getBranches({ + repoFullname, + per_page: constants.LIMIT, + page: page + 1, + }); + + return branches.map((branch) => ({ + label: branch.name, + value: branch.commit.sha, + })); + }, + }, + commitSha: { + type: "string", + label: "Commit SHA", + description: "A commit SHA to retrieve", + async options({ + repoFullname, page, + }) { + const commits = await this.listCommits({ + repoFullname, + per_page: constants.LIMIT, + page: page + 1, + }); + return commits.map((commit) => commit.sha); + }, + }, }, methods: { _baseApiUrl() { @@ -900,5 +934,17 @@ export default { return response.data; }, + async getCommit({ + repoFullname, commitRef, + }) { + const response = await this._client().request(`GET /repos/${repoFullname}/commits/${commitRef}`, {}); + return response.data; + }, + async listCommits({ + repoFullname, ...args + }) { + const response = await this._client().request(`GET /repos/${repoFullname}/commits`, args); + return response.data; + }, }, }; diff --git a/components/github/package.json b/components/github/package.json index 2c0077b900e80..642a39949afe8 100644 --- a/components/github/package.json +++ b/components/github/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/github", - "version": "1.7.2", + "version": "1.8.0", "description": "Pipedream Github Components", "main": "github.app.mjs", "keywords": [ diff --git a/components/github/sources/new-branch/new-branch.mjs b/components/github/sources/new-branch/new-branch.mjs index 9c4ec139235e6..9b8a92773274b 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.10", + version: "1.0.11", 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 4c522ee3984e1..2ef6973b84f24 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.9", + version: "1.0.10", 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 382b32ac4a44c..011b6126f35d3 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.10", + version: "1.0.11", 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 ec74da93d1d95..582e0f38ab5b8 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.10", + version: "1.0.11", 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 558a5b4c10e25..d9544abb26c53 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.11", + version: "1.0.12", 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 c7f367d4222a4..a050fda78e4bd 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.10", + version: "1.0.11", 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 6ca7eacab96db..56be2aafbc4fc 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.10", + version: "1.0.11", 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 42272124a0172..0de50c9a03dcc 100644 --- a/components/github/sources/new-gist/new-gist.mjs +++ b/components/github/sources/new-gist/new-gist.mjs @@ -4,8 +4,8 @@ export default { ...common, key: "github-new-gist", name: "New Gist", - description: "Emit new events when new gists are created by the authenticated user. [See the documentatoion](https://docs.github.com/en/rest/gists/gists?apiVersion=20.2.41-28#list-gists-for-the-authenticated-user)", - version: "0.2.4", + description: "Emit new events when new gists are created by the authenticated user. [See the documentatoion](https://docs.github.com/en/rest/gists/gists?apiVersion=20.2.51-28#list-gists-for-the-authenticated-user)", + version: "0.2.5", 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 d00b2cc556320..00b887399cc32 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.2", + version: "0.0.3", 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 28d0d13c4afd9..a59fd584e0867 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.7", + version: "0.1.8", 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 cb178a5a06fa8..c8609c8651d6c 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.10", + version: "1.0.11", 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 685b009ba89c6..0deed68e93bb7 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.41-28#list-notifications-for-the-authenticated-user)", - version: "0.2.4", + 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.51-28#list-notifications-for-the-authenticated-user)", + version: "0.2.5", 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 e692226c19f9c..500f956426b64 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.41-28#list-notifications-for-the-authenticated-user)", - version: "0.2.4", + 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.51-28#list-notifications-for-the-authenticated-user)", + version: "0.2.5", 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 fa1deb72a651f..deef482afb201 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.7", + version: "1.1.8", 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 6205a7ef36caa..d381636a0a8b0 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.7", + version: "1.1.8", 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 723b97d281034..b8b62cde7df72 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.7", + version: "1.2.8", 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 528e4b2af2431..28e151d5d9ad3 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.41-28#list-organizations-for-the-authenticated-user)", - version: "0.2.4", + 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.51-28#list-organizations-for-the-authenticated-user)", + version: "0.2.5", 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 b8ca7724193dd..0dd3db3d184c9 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.10", + version: "1.0.11", 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 126a1079d65f6..705bab0085168 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.41-28#list-repositories-for-the-authenticated-user)", - version: "0.2.4", + 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.51-28#list-repositories-for-the-authenticated-user)", + version: "0.2.5", 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 2db1d18818025..c78dde83d52d0 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.41-28#list-notifications-for-the-authenticated-user)", - version: "0.2.4", + description: "Emit new event for new review request notifications. [See the documentation](https://docs.github.com/en/rest/activity/notifications?apiVersion=20.2.51-28#list-notifications-for-the-authenticated-user)", + version: "0.2.5", 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 98c4627277c6c..50bf3f7fd1e97 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.41-28#list-notifications-for-the-authenticated-user)", - version: "0.2.4", + description: "Emit new event for security alert notifications. [See the documentation](https://docs.github.com/en/rest/activity/notifications?apiVersion=20.2.51-28#list-notifications-for-the-authenticated-user)", + version: "0.2.5", 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 6bc507b7d4c1a..efd077181c77d 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.9", + version: "0.0.10", 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 3d1911b70272c..cc8dbf1621e1b 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.10", + version: "1.0.11", 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 b9899dc345def..9d3d1c11b4795 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.41-28#list-teams-for-the-authenticated-user)", - version: "0.2.4", + 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.51-28#list-teams-for-the-authenticated-user)", + version: "0.2.5", 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 69535a45e0b9a..8462dc750f69c 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.3", + version: "0.0.4", 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 d4ac2c62dbdd0..4e35ec5594955 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.3", + version: "0.0.4", 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 f2a82e95e49f7..699ad93a2714d 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.10", + version: "1.0.11", dedupe: "unique", props: { docsInfo: { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 525e0c375ca6d..3420094c6da2b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1434,8 +1434,7 @@ importers: specifier: ^3.0.3 version: 3.0.3 - components/belco: - specifiers: {} + components/belco: {} components/benchmark_email: dependencies: @@ -4965,8 +4964,7 @@ importers: components/freshbooks: {} - components/freshchat: - specifiers: {} + components/freshchat: {} components/freshdesk: dependencies: @@ -11322,8 +11320,7 @@ importers: specifier: ^1.5.1 version: 1.6.6 - components/returnless: - specifiers: {} + components/returnless: {} components/returnly: dependencies: