[PR #220] [MERGED] Codex/implement slack trigger in main.py #234

Closed
opened 2026-02-15 21:16:21 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-plugin-sdks/pull/220
Author: @Yeuoly
Created: 10/17/2025
Status: Merged
Merged: 10/17/2025
Merged by: @Yeuoly

Base: feat/triggerHead: codex/implement-slack-trigger-in-main.py


📝 Commits (8)

  • 3858f49 Expand Slack trigger to full Events API catalog
  • 8f378da Remove Slack trigger subscription constructor
  • b1cc8c1 Remove Slack event selection from subscription schema
  • 9e7bc7a Use official Slack icon asset
  • a6d0de0 Stop reading Slack signing secret from constructor parameters
  • fc1ebbd chore: remove tead_id
  • 702a6f0 refactoring
  • 2b0775f Resolve merge conflicts in Slack trigger implementation

📊 Changes

69 files changed (+459 additions, -216 deletions)

View changed files

📝 python/examples/slack_trigger/events/_catalog_event.py (+1 -2)
📝 python/examples/slack_trigger/events/app/app_mention.py (+3 -1)
📝 python/examples/slack_trigger/events/app/app_mention.yaml (+147 -0)
📝 python/examples/slack_trigger/events/app/app_rate_limited.py (+3 -1)
📝 python/examples/slack_trigger/events/app/app_uninstalled.py (+3 -1)
📝 python/examples/slack_trigger/events/channel/channel_archive.py (+3 -1)
📝 python/examples/slack_trigger/events/channel/channel_created.py (+3 -1)
📝 python/examples/slack_trigger/events/channel/channel_deleted.py (+3 -1)
📝 python/examples/slack_trigger/events/channel/channel_history_changed.py (+3 -1)
📝 python/examples/slack_trigger/events/channel/channel_left.py (+3 -1)
📝 python/examples/slack_trigger/events/channel/channel_rename.py (+3 -1)
📝 python/examples/slack_trigger/events/channel/channel_unarchive.py (+3 -1)
📝 python/examples/slack_trigger/events/dnd/dnd_updated.py (+3 -1)
📝 python/examples/slack_trigger/events/dnd/dnd_updated_user.py (+3 -1)
📝 python/examples/slack_trigger/events/email/email_domain_changed.py (+3 -1)
📝 python/examples/slack_trigger/events/emoji/emoji_changed.py (+3 -1)
📝 python/examples/slack_trigger/events/file/file_change.py (+3 -1)
📝 python/examples/slack_trigger/events/file/file_comment_added.py (+3 -1)
📝 python/examples/slack_trigger/events/file/file_comment_deleted.py (+3 -1)
📝 python/examples/slack_trigger/events/file/file_comment_edited.py (+3 -1)

...and 49 more files

📄 Description

Pull Request Checklist

Thank you for your contribution! Before submitting your PR, please make sure you have completed the following checks:

Compatibility Check

  • I have checked whether this change affects the backward compatibility of the plugin declared in README.md
  • I have checked whether this change affects the forward compatibility of the plugin declared in README.md
  • If this change introduces a breaking change, I have discussed it with the project maintainer and specified the release version in the README.md
  • I have described the compatibility impact and the corresponding version number in the PR description
  • I have checked whether the plugin version is updated in the README.md

Available Checks

  • Code has passed local tests
  • Relevant documentation has been updated (if necessary)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify-plugin-sdks/pull/220 **Author:** [@Yeuoly](https://github.com/Yeuoly) **Created:** 10/17/2025 **Status:** ✅ Merged **Merged:** 10/17/2025 **Merged by:** [@Yeuoly](https://github.com/Yeuoly) **Base:** `feat/trigger` ← **Head:** `codex/implement-slack-trigger-in-main.py` --- ### 📝 Commits (8) - [`3858f49`](https://github.com/langgenius/dify-plugin-sdks/commit/3858f49c33219a297e2912fd48b0daaaa8c02967) Expand Slack trigger to full Events API catalog - [`8f378da`](https://github.com/langgenius/dify-plugin-sdks/commit/8f378da617b8d11240ef68f2cc6c41c9976ca211) Remove Slack trigger subscription constructor - [`b1cc8c1`](https://github.com/langgenius/dify-plugin-sdks/commit/b1cc8c12ff511d2ef210e936b0445dc05925fbce) Remove Slack event selection from subscription schema - [`9e7bc7a`](https://github.com/langgenius/dify-plugin-sdks/commit/9e7bc7aef6105900ca1517c3e7d1346c62b2e966) Use official Slack icon asset - [`a6d0de0`](https://github.com/langgenius/dify-plugin-sdks/commit/a6d0de0eab98e57ecdc846976a0bc4b7f2a30393) Stop reading Slack signing secret from constructor parameters - [`fc1ebbd`](https://github.com/langgenius/dify-plugin-sdks/commit/fc1ebbd45ae652a8c8ca4f64966b5463571297ef) chore: remove tead_id - [`702a6f0`](https://github.com/langgenius/dify-plugin-sdks/commit/702a6f00431db4d6fb1106b14bd4e97370a07675) refactoring - [`2b0775f`](https://github.com/langgenius/dify-plugin-sdks/commit/2b0775faf79abebea1bf395d5b7ed8020f3b72be) Resolve merge conflicts in Slack trigger implementation ### 📊 Changes **69 files changed** (+459 additions, -216 deletions) <details> <summary>View changed files</summary> 📝 `python/examples/slack_trigger/events/_catalog_event.py` (+1 -2) 📝 `python/examples/slack_trigger/events/app/app_mention.py` (+3 -1) 📝 `python/examples/slack_trigger/events/app/app_mention.yaml` (+147 -0) 📝 `python/examples/slack_trigger/events/app/app_rate_limited.py` (+3 -1) 📝 `python/examples/slack_trigger/events/app/app_uninstalled.py` (+3 -1) 📝 `python/examples/slack_trigger/events/channel/channel_archive.py` (+3 -1) 📝 `python/examples/slack_trigger/events/channel/channel_created.py` (+3 -1) 📝 `python/examples/slack_trigger/events/channel/channel_deleted.py` (+3 -1) 📝 `python/examples/slack_trigger/events/channel/channel_history_changed.py` (+3 -1) 📝 `python/examples/slack_trigger/events/channel/channel_left.py` (+3 -1) 📝 `python/examples/slack_trigger/events/channel/channel_rename.py` (+3 -1) 📝 `python/examples/slack_trigger/events/channel/channel_unarchive.py` (+3 -1) 📝 `python/examples/slack_trigger/events/dnd/dnd_updated.py` (+3 -1) 📝 `python/examples/slack_trigger/events/dnd/dnd_updated_user.py` (+3 -1) 📝 `python/examples/slack_trigger/events/email/email_domain_changed.py` (+3 -1) 📝 `python/examples/slack_trigger/events/emoji/emoji_changed.py` (+3 -1) 📝 `python/examples/slack_trigger/events/file/file_change.py` (+3 -1) 📝 `python/examples/slack_trigger/events/file/file_comment_added.py` (+3 -1) 📝 `python/examples/slack_trigger/events/file/file_comment_deleted.py` (+3 -1) 📝 `python/examples/slack_trigger/events/file/file_comment_edited.py` (+3 -1) _...and 49 more files_ </details> ### 📄 Description # Pull Request Checklist Thank you for your contribution! Before submitting your PR, please make sure you have completed the following checks: ## Compatibility Check - [ ] I have checked whether this change affects the **backward compatibility** of the plugin declared in `README.md` - [ ] I have checked whether this change affects the **forward compatibility** of the plugin declared in `README.md` - [ ] If this change introduces a breaking change, I have discussed it with the project maintainer and specified the release version in the `README.md` - [ ] I have described the compatibility impact and the corresponding version number in the PR description - [ ] I have checked whether the plugin version is updated in the `README.md` ## Available Checks - [ ] Code has passed local tests - [ ] Relevant documentation has been updated (if necessary) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 21:16:21 -05:00
yindo closed this issue 2026-02-15 21:16:21 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-plugin-sdks#234