nonebot2/.github/workflows/publish-bot.yml

30 lines
742 B
YAML
Raw Normal View History

2021-12-02 03:17:10 +08:00
name: NoneBot2 Publish Bot
2020-11-20 00:30:46 +08:00
on:
issues:
types: [opened, reopened, edited]
pull_request_target:
2020-11-20 00:30:46 +08:00
types: [closed]
jobs:
publish_bot:
2020-11-20 00:30:46 +08:00
runs-on: ubuntu-latest
name: nonebot2 publish bot
2020-11-20 00:30:46 +08:00
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
2020-11-20 00:30:46 +08:00
- name: NoneBot2 Publish Bot
2022-02-16 11:10:54 +08:00
uses: docker://ghcr.io/nonebot/nonebot2-publish-bot:main
2020-11-20 00:30:46 +08:00
with:
2020-11-20 13:38:28 +08:00
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"
}