mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-06-06 12:26:38 +00:00
🔀 Merge pull request #38
This commit is contained in:
commit
aafc3dd060
33
.github/ISSUE_TEMPLATE/bug-report.md
vendored
Normal file
33
.github/ISSUE_TEMPLATE/bug-report.md
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a bug report to help us improve
|
||||||
|
title: 'Bug: Something went wrong'
|
||||||
|
labels: bug
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**描述问题:**
|
||||||
|
|
||||||
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
|
**如何复现?**
|
||||||
|
|
||||||
|
1. Go to '...'
|
||||||
|
2. Click on '....'
|
||||||
|
3. Scroll down to '....'
|
||||||
|
4. See error
|
||||||
|
|
||||||
|
**期望的结果**
|
||||||
|
|
||||||
|
A clear and concise description of what you expected to happen.
|
||||||
|
|
||||||
|
**环境信息:**
|
||||||
|
|
||||||
|
- OS: [e.g. Linux]
|
||||||
|
- Python Version: [e.g. 3.8]
|
||||||
|
- Nonebot Version [e.g. 2.0.0]
|
||||||
|
|
||||||
|
**截图**
|
||||||
|
|
||||||
|
If applicable, add screenshots to help explain your problem.
|
16
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
16
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
name: Feature request
|
||||||
|
about: Suggest an idea for this project
|
||||||
|
title: 'Feature: Something you want'
|
||||||
|
labels: enhancement
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**是否在使用中遇到某些问题而需要新的特性?请描述:**
|
||||||
|
|
||||||
|
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||||
|
|
||||||
|
**描述你所需要的特性:**
|
||||||
|
|
||||||
|
A clear and concise description of what you want to happen.
|
31
.github/release-drafter.yml
vendored
Normal file
31
.github/release-drafter.yml
vendored
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
name-template: 'v$RESOLVED_VERSION 🌈'
|
||||||
|
tag-template: 'v$RESOLVED_VERSION'
|
||||||
|
categories:
|
||||||
|
- title: '🚀 Features'
|
||||||
|
labels:
|
||||||
|
- 'feature'
|
||||||
|
- 'enhancement'
|
||||||
|
- title: '🐛 Bug Fixes'
|
||||||
|
labels:
|
||||||
|
- 'fix'
|
||||||
|
- 'bugfix'
|
||||||
|
- 'bug'
|
||||||
|
- title: '🧰 Maintenance'
|
||||||
|
label: 'chore'
|
||||||
|
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
|
||||||
|
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
|
||||||
|
version-resolver:
|
||||||
|
major:
|
||||||
|
labels:
|
||||||
|
- 'major'
|
||||||
|
minor:
|
||||||
|
labels:
|
||||||
|
- 'minor'
|
||||||
|
patch:
|
||||||
|
labels:
|
||||||
|
- 'patch'
|
||||||
|
default: patch
|
||||||
|
template: |
|
||||||
|
## Changes
|
||||||
|
|
||||||
|
$CHANGES
|
14
.github/workflows/release-draft.yml
vendored
Normal file
14
.github/workflows/release-draft.yml
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
name: Release Drafter
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update_release_draft:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: release-drafter/release-drafter@v5
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
@ -4,46 +4,46 @@
|
|||||||
* **模块索引**
|
* **模块索引**
|
||||||
|
|
||||||
|
|
||||||
* [nonebot](nonebot.html)
|
* [nonebot](nonebot.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.config](config.html)
|
* [nonebot.config](config.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.plugin](plugin.html)
|
* [nonebot.plugin](plugin.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.matcher](matcher.html)
|
* [nonebot.matcher](matcher.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.rule](rule.html)
|
* [nonebot.rule](rule.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.permission](permission.html)
|
* [nonebot.permission](permission.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.sched](sched.html)
|
* [nonebot.sched](sched.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.log](log.html)
|
* [nonebot.log](log.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.utils](utils.html)
|
* [nonebot.utils](utils.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.typing](typing.html)
|
* [nonebot.typing](typing.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.exception](exception.html)
|
* [nonebot.exception](exception.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.drivers](drivers/)
|
* [nonebot.drivers](drivers/)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.drivers.fastapi](drivers/fastapi.html)
|
* [nonebot.drivers.fastapi](drivers/fastapi.md)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.adapters](adapters/)
|
* [nonebot.adapters](adapters/)
|
||||||
|
|
||||||
|
|
||||||
* [nonebot.adapters.cqhttp](adapters/cqhttp.html)
|
* [nonebot.adapters.cqhttp](adapters/cqhttp.md)
|
||||||
|
@ -2,18 +2,18 @@ NoneBot Api Reference
|
|||||||
=====================
|
=====================
|
||||||
|
|
||||||
:模块索引:
|
:模块索引:
|
||||||
- `nonebot <nonebot.html>`_
|
- `nonebot <nonebot.rst>`_
|
||||||
- `nonebot.config <config.html>`_
|
- `nonebot.config <config.rst>`_
|
||||||
- `nonebot.plugin <plugin.html>`_
|
- `nonebot.plugin <plugin.rst>`_
|
||||||
- `nonebot.matcher <matcher.html>`_
|
- `nonebot.matcher <matcher.rst>`_
|
||||||
- `nonebot.rule <rule.html>`_
|
- `nonebot.rule <rule.rst>`_
|
||||||
- `nonebot.permission <permission.html>`_
|
- `nonebot.permission <permission.rst>`_
|
||||||
- `nonebot.sched <sched.html>`_
|
- `nonebot.sched <sched.rst>`_
|
||||||
- `nonebot.log <log.html>`_
|
- `nonebot.log <log.rst>`_
|
||||||
- `nonebot.utils <utils.html>`_
|
- `nonebot.utils <utils.rst>`_
|
||||||
- `nonebot.typing <typing.html>`_
|
- `nonebot.typing <typing.rst>`_
|
||||||
- `nonebot.exception <exception.html>`_
|
- `nonebot.exception <exception.rst>`_
|
||||||
- `nonebot.drivers <drivers/>`_
|
- `nonebot.drivers <drivers/>`_
|
||||||
- `nonebot.drivers.fastapi <drivers/fastapi.html>`_
|
- `nonebot.drivers.fastapi <drivers/fastapi.rst>`_
|
||||||
- `nonebot.adapters <adapters/>`_
|
- `nonebot.adapters <adapters/>`_
|
||||||
- `nonebot.adapters.cqhttp <adapters/cqhttp.html>`_
|
- `nonebot.adapters.cqhttp <adapters/cqhttp.rst>`_
|
||||||
|
Loading…
x
Reference in New Issue
Block a user