Skip to content

Commit

Permalink
feat(component,googlesheet): implement the Google Sheet component (#878)
Browse files Browse the repository at this point in the history
Because

- We are introducing a Google Sheets component.

This commit

- implements the Google Sheet component
  • Loading branch information
donch1989 authored Nov 27, 2024
1 parent 41851e0 commit 8a0ab93
Show file tree
Hide file tree
Showing 43 changed files with 4,812 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/component/application/github/v0/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ Get the review comments in a pull request. The comments can be on a specific lin
| Field | Field ID | Type | Note |
| :--- | :--- | :--- | :--- |
| Comment body | `body` | string | Body of the comment. |
| Commit SHA | `commitId` | string | SHA of the commit on which you want to comment. |
| Commit SHA | `commit-id` | string | SHA of the commit on which you want to comment. |
| Comment created at | `created-at` | string | Time the comment was created. |
| Comment id | `id` | integer | ID of the comment. |
| In Reply To | `in-reply-to-id` | integer | ID of the comment this comment is in reply to. |
Expand Down Expand Up @@ -395,7 +395,7 @@ The comment to be added.
| :--- | :--- | :--- | :--- |
| Comment ID (optional) | `id` | integer | ID of the comment. |
| In Reply To (optional) | `in-reply-to-id` | integer | ID of the comment this comment is in reply to. |
| Commit SHA (optional) | `commitId` | string | SHA of the commit on which you want to comment. |
| Commit SHA (optional) | `commit-id` | string | SHA of the commit on which you want to comment. |
| Comment Body (optional) | `body` | string | Body of the comment. |
| Comment Path (optional) | `path` | string | Path of the file the comment is on. |
| Comment End Line (optional) | `line` | integer | The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to. |
Expand Down
1 change: 1 addition & 0 deletions pkg/component/data/googledrive/v0/config/setup.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"accessUrl": "https://oauth2.googleapis.com/token",
"scopes": [
"https://www.googleapis.com/auth/drive.readonly",
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
Expand Down
Loading

0 comments on commit 8a0ab93

Please sign in to comment.