mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 17:15:05 +08:00
2b64e8266c
* 🐛 fix permission error * 👷 remove unnecessary push trigger
30 lines
742 B
YAML
30 lines
742 B
YAML
name: NoneBot2 Publish Bot
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, reopened, edited]
|
|
pull_request_target:
|
|
types: [closed]
|
|
|
|
jobs:
|
|
publish_bot:
|
|
runs-on: ubuntu-latest
|
|
name: nonebot2 publish bot
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.GH_TOKEN }}
|
|
|
|
- name: NoneBot2 Publish Bot
|
|
uses: docker://ghcr.io/nonebot/nonebot2-publish-bot:main
|
|
with:
|
|
token: ${{ secrets.GH_TOKEN }}
|
|
config: >
|
|
{
|
|
"base": "master",
|
|
"plugin_path": "website/static/plugins.json",
|
|
"bot_path": "website/static/bots.json",
|
|
"adapter_path": "website/static/adapters.json"
|
|
}
|