Extend workflow actions: 2→10 action types#86
Merged
xuyushun441-sys merged 3 commits intomainfrom Jan 23, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…sk, Push, Script Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add new action types for workflow extension
Extend workflow actions: 2→10 action types
Jan 23, 2026
Contributor
|
This PR is very large. Consider breaking it into smaller PRs for easier review. |
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.
Extends workflow automation from 2 action types (field update, email) to 10 types for multi-channel notification and integration support.
Added Actions
Messaging & Notifications:
sms_notification- Twilio/Vonage SMS with provider selectionslack_message- Channel messages with mentions and threadingteams_message- Microsoft Teams with team/channel routingpush_notification- Mobile push with deep linkingIntegrations:
http_call- REST API calls with auth (Basic, Bearer, OAuth2, API Key)webhook_trigger- Outbound webhooks with retry logictask_creation- Create records on any object with field mappingExtensibility:
custom_script- JavaScript/TypeScript/Python execution with timeout controlImplementation
All schemas follow Zod-first pattern with discriminated unions for type safety:
Example multi-channel workflow:
Artifacts
z.infer<>Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.