mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 10:25:23 -04:00
6220b50946
- Bumped version from 1.3.0 to 1.3.1 in the manifest. - Removed deprecated issue comment events: issue_comment_created, issue_comment_edited, issue_comment_deleted. - Consolidated issue comment handling into a unified structure for better maintainability. - Updated README to reflect changes in event handling and provide clearer setup instructions.
52 lines
839 B
YAML
52 lines
839 B
YAML
identity:
|
|
name: ping
|
|
author: langgenius
|
|
label:
|
|
en_US: Ping
|
|
zh_Hans: Ping
|
|
ja_JP: Ping
|
|
|
|
description:
|
|
en_US: Sent to test your GitHub webhook configuration
|
|
zh_Hans: 用于测试 GitHub Webhook 配置
|
|
ja_JP: GitHub Webhook 設定のテスト用
|
|
|
|
parameters: []
|
|
|
|
output_schema:
|
|
type: object
|
|
properties:
|
|
zen:
|
|
type:
|
|
- string
|
|
- "null"
|
|
hook_id:
|
|
type:
|
|
- integer
|
|
- "null"
|
|
hook:
|
|
type:
|
|
- object
|
|
- "null"
|
|
properties:
|
|
id:
|
|
type: integer
|
|
type:
|
|
type:
|
|
- string
|
|
- "null"
|
|
active:
|
|
type:
|
|
- boolean
|
|
- "null"
|
|
events:
|
|
type:
|
|
- array
|
|
- "null"
|
|
items:
|
|
type: string
|
|
|
|
extra:
|
|
python:
|
|
source: events/ping/ping.py
|