v0.5.82: slack trigger files, pagination for linear, executor fixes#3153
Merged
waleedlatif1 merged 4 commits intomainfrom Feb 6, 2026
Merged
v0.5.82: slack trigger files, pagination for linear, executor fixes#3153waleedlatif1 merged 4 commits intomainfrom
waleedlatif1 merged 4 commits intomainfrom
Conversation
Collaborator
waleedlatif1
commented
Feb 6, 2026
- fix(executor): loop sentinel-end wrongly queued (fix(executor): loop sentinel-end wrongly queued #3148)
- fix(linear): align tool outputs, queries, and pagination with API (fix(linear): align tool outputs, queries, and pagination with API #3150)
- fix(resolver): response format and evaluator metrics in deactivated branch (fix(resolver): response format and evaluator metrics in deactivated branch #3152)
- feat(slack): add file attachment support to slack webhook trigger (feat(slack): add file attachment support to slack webhook trigger #3151)
* fix(executor): loop sentinel-end wrongly queued * fix nested subflow error highlighting
…ranch (#3152) * fix(resolver): response format in deactivated branch * add evaluator metrics too * add child workflow id to the workflow block outputs * cleanup typing
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile OverviewGreptile Summary
Confidence Score: 3/5
Important Files Changed
Sequence DiagramsequenceDiagram
autonumber
participant Slack as Slack
participant Webhook as Webhook Endpoint
participant Utils as formatWebhookInput()
participant DL as downloadSlackFiles()
participant Fetch as secureFetchWithPinnedIP()
participant Exec as WebhookExecution
participant Attach as AttachmentProcessor
Slack->>Webhook: POST payload (event_callback)
Webhook->>Utils: formatWebhookInput(body, providerConfig)
Utils->>Utils: read providerConfig.includeFiles/botToken
alt event contains files AND includeFiles AND botToken
Utils->>DL: downloadSlackFiles(rawEvent.files, botToken)
loop each file (<= SLACK_MAX_FILES)
DL->>DL: validate host + size + DNS
DL->>Fetch: GET url_private (Authorization: Bearer botToken)
Fetch-->>DL: Response (bytes)
DL-->>Utils: base64 file objects
end
else no files or disabled
Utils-->>Utils: files = []
end
Utils-->>Exec: normalized event {text, user, hasFiles, files}
Exec->>Attach: map output schema to attachments
Attach-->>Exec: attachments ready for workflow execution
|
Contributor
Additional Comments (1)
This removes the If only |
|
cracked |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.