-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Monday.com MCP actions and async/reloadProps removal #21770
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Priyadharshan-Pdm
wants to merge
17
commits into
master
Choose a base branch
from
ref/issue-21740-monday
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
bf3e531
Refactor Monday column value handling and add List Columns action
Priyadharshan-Pdm 2e9055d
Merge branch 'master' of https://github.com/PipedreamHQ/pipedream int…
Priyadharshan-Pdm 68531ed
version bump
Priyadharshan-Pdm 8c2cabc
chore: update @pipedream/monday dependency to version 0.12.1
Priyadharshan-Pdm 38b325d
chore: bump version for multiple Monday actions and sources
Priyadharshan-Pdm 2c5c09b
Move monday_oauth changes to ref/issue-21740-monday-oauth
Priyadharshan-Pdm f242ac0
feat: add Claude PR review workflow for automated pull request reviews
Priyadharshan-Pdm 06d5410
fix: enhance Claude PR review workflow for better security and clarity
Priyadharshan-Pdm c608977
fix: add id-token permission for Claude workflow to ensure token minting
Priyadharshan-Pdm e4fb8e2
fix: remove obsolete Claude PR review workflow file
Priyadharshan-Pdm 870c996
fix: update getItemsByColumnValue query structure and enhance item co…
Priyadharshan-Pdm 6a450fd
fix: update destructiveHint to false and enhance listItems query for …
Priyadharshan-Pdm 1e5c4bb
fix: refactor column type checks to use constants for improved mainta…
Priyadharshan-Pdm 50638c5
fix: refactor GraphQL request handling and remove unused dependencies…
Priyadharshan-Pdm 289c46e
Merge branch 'master' of https://github.com/PipedreamHQ/pipedream int…
Priyadharshan-Pdm 6b47711
lock file changes
Priyadharshan-Pdm ecfa822
fix: update Monday API integration to use the latest version and refa…
Priyadharshan-Pdm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| import { getColumnOptions } from "../../common/utils.mjs"; | ||
| import monday from "../../monday.app.mjs"; | ||
|
|
||
| export default { | ||
| key: "monday-list-columns", | ||
| name: "List Columns", | ||
| description: "List the columns of a board, including each column's ID, type, and the labels a `status` or `dropdown` column accepts. Use this to discover the column IDs and values required by **Create Item**, **Update Column Values** and **Get Items By Column Value**. [See the documentation](https://developer.monday.com/api-reference/reference/columns#queries)", | ||
| type: "action", | ||
| version: "0.0.2", | ||
| annotations: { | ||
| destructiveHint: false, | ||
| openWorldHint: true, | ||
| readOnlyHint: true, | ||
| }, | ||
| props: { | ||
| monday, | ||
| boardId: { | ||
| propDefinition: [ | ||
| monday, | ||
| "boardId", | ||
| ], | ||
| }, | ||
| }, | ||
| async run({ $ }) { | ||
| const columns = await this.monday.listColumns({ | ||
| boardId: +this.boardId, | ||
| }); | ||
|
|
||
| if (!columns?.length) { | ||
| throw new Error(`No columns found for board ${this.boardId}. Check that the board ID is correct and that the connected account can access it.`); | ||
| } | ||
|
|
||
| const results = columns.map(({ | ||
| id, title, type, | ||
| }) => ({ | ||
| id, | ||
| title, | ||
| type, | ||
| // Only status/dropdown columns carry labels; undefined for every other type. | ||
| labels: getColumnOptions(columns, id, true), | ||
| })); | ||
|
|
||
| $.export("$summary", `Successfully retrieved ${results.length} column${results.length === 1 | ||
| ? "" | ||
| : "s"}`); | ||
|
|
||
| return results; | ||
| }, | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.