forked from nonebot/nonebot2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ publish to store using issue form (nonebot#2010)
- Loading branch information
Showing
7 changed files
with
209 additions
and
103 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: 发布适配器 | ||
title: "Adapter: {name}" | ||
description: 发布适配器到 NoneBot 官方商店 | ||
labels: ["Adapter"] | ||
body: | ||
- type: input | ||
id: name | ||
attributes: | ||
label: 适配器名称 | ||
description: 适配器名称 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: description | ||
attributes: | ||
label: 适配器描述 | ||
description: 适配器描述 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: pypi | ||
attributes: | ||
label: PyPI 项目名 | ||
description: PyPI 项目名 | ||
placeholder: e.g. nonebot-adapter-xxx | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: module | ||
attributes: | ||
label: 适配器 import 包名 | ||
description: 适配器 import 包名 | ||
placeholder: e.g. nonebot_adapter_xxx | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: homepage | ||
attributes: | ||
label: 适配器项目仓库/主页链接 | ||
description: 适配器项目仓库/主页链接 | ||
placeholder: e.g. https://github.com/xxx/xxx | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: tags | ||
attributes: | ||
label: 标签 | ||
description: 标签 | ||
placeholder: 'e.g. [{"label": "标签名", "color": "#ea5252"}]' | ||
value: "[]" | ||
validations: | ||
required: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: 发布机器人 | ||
title: "Bot: {name}" | ||
description: 发布机器人到 NoneBot 官方商店 | ||
labels: ["Bot"] | ||
body: | ||
- type: input | ||
id: name | ||
attributes: | ||
label: 机器人名称 | ||
description: 机器人名称 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: description | ||
attributes: | ||
label: 机器人描述 | ||
description: 机器人描述 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: homepage | ||
attributes: | ||
label: 机器人项目仓库/主页链接 | ||
description: 机器人项目仓库/主页链接 | ||
placeholder: e.g. https://github.com/xxx/xxx | ||
|
||
- type: input | ||
id: tags | ||
attributes: | ||
label: 标签 | ||
description: 标签 | ||
placeholder: 'e.g. [{"label": "标签名", "color": "#ea5252"}]' | ||
value: "[]" | ||
validations: | ||
required: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,5 @@ | ||
blank_issues_enabled: true | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Question | ||
- name: NoneBot 论坛 | ||
url: https://discussions.nonebot.dev/ | ||
about: Ask questions about nonebot | ||
- name: Plugin Publish | ||
url: https://v2.nonebot.dev/store | ||
about: Publish your plugin to nonebot homepage and nb-cli | ||
- name: Adapter Publish | ||
url: https://v2.nonebot.dev/store | ||
about: Publish your adapter to nonebot homepage and nb-cli | ||
- name: Bot Publish | ||
url: https://v2.nonebot.dev/store | ||
about: Publish your bot to nonebot homepage and nb-cli | ||
about: 前往 NoneBot 论坛提问 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: 发布插件 | ||
title: "Plugin: {name}" | ||
description: 发布插件到 NoneBot 官方商店 | ||
labels: ["Plugin"] | ||
body: | ||
- type: input | ||
id: name | ||
attributes: | ||
label: 插件名称 | ||
description: 插件名称 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: description | ||
attributes: | ||
label: 插件描述 | ||
description: 插件描述 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: pypi | ||
attributes: | ||
label: PyPI 项目名 | ||
description: PyPI 项目名 | ||
placeholder: e.g. nonebot-plugin-xxx | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: module | ||
attributes: | ||
label: 插件 import 包名 | ||
description: 插件 import 包名 | ||
placeholder: e.g. nonebot_plugin_xxx | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: homepage | ||
attributes: | ||
label: 插件项目仓库/主页链接 | ||
description: 插件项目仓库/主页链接 | ||
placeholder: e.g. https://github.com/xxx/xxx | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: tags | ||
attributes: | ||
label: 标签 | ||
description: 标签 | ||
placeholder: 'e.g. [{"label": "标签名", "color": "#ea5252"}]' | ||
value: "[]" | ||
validations: | ||
required: true |
This file contains 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
This file contains 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
This file contains 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