mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-28 08:12:14 +08:00
998db949da
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 lines
772 B
YAML
33 lines
772 B
YAML
name: NoneBot2 Publish Bot
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
issues:
|
|
types: [opened, reopened, edited]
|
|
pull_request:
|
|
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"
|
|
}
|