[PR #1931] [MERGED] Add Notion trigger plugin #2156

Closed
opened 2026-02-16 11:16:14 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/1931
Author: @Yevanchen
Created: 10/26/2025
Status: Merged
Merged: 10/29/2025
Merged by: @RockChinQ

Base: feat/triggersHead: notion-trigger


📝 Commits (2)

  • f5492bf Add Notion trigger plugin
  • d18aa52 feat(notion_trigger): Add comprehensive API content fetching

📊 Changes

68 files changed (+3296 additions, -0 deletions)

View changed files

triggers/notion_trigger/.env.example (+4 -0)
triggers/notion_trigger/.gitignore (+155 -0)
triggers/notion_trigger/README.md (+100 -0)
triggers/notion_trigger/TODO.md (+33 -0)
triggers/notion_trigger/__init__.py (+0 -0)
triggers/notion_trigger/_assets/notion.icon.png (+0 -0)
triggers/notion_trigger/events/__init__.py (+0 -0)
triggers/notion_trigger/events/base.py (+163 -0)
triggers/notion_trigger/events/comment/__init__.py (+0 -0)
triggers/notion_trigger/events/comment/comment_created.py (+6 -0)
triggers/notion_trigger/events/comment/comment_created.yaml (+78 -0)
triggers/notion_trigger/events/comment/comment_deleted.py (+6 -0)
triggers/notion_trigger/events/comment/comment_deleted.yaml (+78 -0)
triggers/notion_trigger/events/comment/comment_updated.py (+6 -0)
triggers/notion_trigger/events/comment/comment_updated.yaml (+78 -0)
triggers/notion_trigger/events/data_source/__init__.py (+0 -0)
triggers/notion_trigger/events/data_source/data_source_content_updated.py (+6 -0)
triggers/notion_trigger/events/data_source/data_source_content_updated.yaml (+71 -0)
triggers/notion_trigger/events/data_source/data_source_created.py (+6 -0)
triggers/notion_trigger/events/data_source/data_source_created.yaml (+71 -0)

...and 48 more files

📄 Description

No description provided


🔄 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-official-plugins/pull/1931 **Author:** [@Yevanchen](https://github.com/Yevanchen) **Created:** 10/26/2025 **Status:** ✅ Merged **Merged:** 10/29/2025 **Merged by:** [@RockChinQ](https://github.com/RockChinQ) **Base:** `feat/triggers` ← **Head:** `notion-trigger` --- ### 📝 Commits (2) - [`f5492bf`](https://github.com/langgenius/dify-official-plugins/commit/f5492bffeee084d84b784e8ce473d2dac6a633b9) Add Notion trigger plugin - [`d18aa52`](https://github.com/langgenius/dify-official-plugins/commit/d18aa529be0628f1ce7d4ccb4ca4a4aec04e0341) feat(notion_trigger): Add comprehensive API content fetching ### 📊 Changes **68 files changed** (+3296 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `triggers/notion_trigger/.env.example` (+4 -0) ➕ `triggers/notion_trigger/.gitignore` (+155 -0) ➕ `triggers/notion_trigger/README.md` (+100 -0) ➕ `triggers/notion_trigger/TODO.md` (+33 -0) ➕ `triggers/notion_trigger/__init__.py` (+0 -0) ➕ `triggers/notion_trigger/_assets/notion.icon.png` (+0 -0) ➕ `triggers/notion_trigger/events/__init__.py` (+0 -0) ➕ `triggers/notion_trigger/events/base.py` (+163 -0) ➕ `triggers/notion_trigger/events/comment/__init__.py` (+0 -0) ➕ `triggers/notion_trigger/events/comment/comment_created.py` (+6 -0) ➕ `triggers/notion_trigger/events/comment/comment_created.yaml` (+78 -0) ➕ `triggers/notion_trigger/events/comment/comment_deleted.py` (+6 -0) ➕ `triggers/notion_trigger/events/comment/comment_deleted.yaml` (+78 -0) ➕ `triggers/notion_trigger/events/comment/comment_updated.py` (+6 -0) ➕ `triggers/notion_trigger/events/comment/comment_updated.yaml` (+78 -0) ➕ `triggers/notion_trigger/events/data_source/__init__.py` (+0 -0) ➕ `triggers/notion_trigger/events/data_source/data_source_content_updated.py` (+6 -0) ➕ `triggers/notion_trigger/events/data_source/data_source_content_updated.yaml` (+71 -0) ➕ `triggers/notion_trigger/events/data_source/data_source_created.py` (+6 -0) ➕ `triggers/notion_trigger/events/data_source/data_source_created.yaml` (+71 -0) _...and 48 more files_ </details> ### 📄 Description _No description provided_ --- <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-16 11:16:14 -05:00
yindo closed this issue 2026-02-16 11:16:14 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-official-plugins#2156