2023-04-08 00:07:39 +08:00
|
|
|
name: NoneFlow
|
2020-11-20 00:30:46 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
2020-11-20 16:39:52 +08:00
|
|
|
types: [opened, reopened, edited]
|
2022-03-25 18:24:35 +08:00
|
|
|
pull_request_target:
|
2020-11-20 00:30:46 +08:00
|
|
|
types: [closed]
|
2022-12-30 11:30:47 +08:00
|
|
|
issue_comment:
|
|
|
|
types: [created]
|
2023-04-08 00:07:39 +08:00
|
|
|
pull_request_review:
|
|
|
|
types: [submitted]
|
2020-11-20 00:30:46 +08:00
|
|
|
|
2023-01-04 12:48:10 +08:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.issue.number || github.run_id }}
|
2023-06-14 17:05:52 +08:00
|
|
|
cancel-in-progress: false
|
2023-01-04 12:48:10 +08:00
|
|
|
|
2020-11-20 00:30:46 +08:00
|
|
|
jobs:
|
2024-11-18 23:18:27 +08:00
|
|
|
noneflow:
|
2024-04-29 20:26:35 +08:00
|
|
|
runs-on: ubuntu-latest
|
2024-11-18 23:18:27 +08:00
|
|
|
name: noneflow
|
2024-04-29 20:26:35 +08:00
|
|
|
# do not run on forked PRs, do not run on not related issues, do not run on pr comments
|
|
|
|
if: |
|
|
|
|
!(
|
|
|
|
(
|
|
|
|
github.event.pull_request &&
|
|
|
|
(
|
|
|
|
github.event.pull_request.head.repo.fork ||
|
|
|
|
!(
|
|
|
|
contains(github.event.pull_request.labels.*.name, 'Plugin') ||
|
|
|
|
contains(github.event.pull_request.labels.*.name, 'Adapter') ||
|
|
|
|
contains(github.event.pull_request.labels.*.name, 'Bot')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
) ||
|
|
|
|
(
|
|
|
|
github.event_name == 'issue_comment' && github.event.issue.pull_request
|
|
|
|
)
|
|
|
|
)
|
2020-11-20 00:30:46 +08:00
|
|
|
steps:
|
2023-04-04 09:48:31 +08:00
|
|
|
- name: Generate token
|
|
|
|
id: generate-token
|
2023-09-11 12:52:59 +08:00
|
|
|
uses: tibdex/github-app-token@v2
|
2023-04-04 09:48:31 +08:00
|
|
|
with:
|
|
|
|
app_id: ${{ secrets.APP_ID }}
|
|
|
|
private_key: ${{ secrets.APP_KEY }}
|
|
|
|
|
2022-12-30 11:30:47 +08:00
|
|
|
- name: Checkout Code
|
2023-09-05 12:00:44 +08:00
|
|
|
uses: actions/checkout@v4
|
2022-01-20 13:35:58 +08:00
|
|
|
with:
|
2023-04-04 09:48:31 +08:00
|
|
|
token: ${{ steps.generate-token.outputs.token }}
|
|
|
|
|
2023-06-14 17:05:52 +08:00
|
|
|
- name: Cache pre-commit hooks
|
2024-01-18 13:58:14 +08:00
|
|
|
uses: actions/cache@v4
|
2023-06-14 17:05:52 +08:00
|
|
|
with:
|
|
|
|
path: .cache/.pre-commit
|
|
|
|
key: noneflow-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
|
|
|
|
|
2023-04-08 00:07:39 +08:00
|
|
|
- name: NoneFlow
|
|
|
|
uses: docker://ghcr.io/nonebot/noneflow:latest
|
2020-11-20 00:30:46 +08:00
|
|
|
with:
|
2022-01-04 20:23:21 +08:00
|
|
|
config: >
|
|
|
|
{
|
|
|
|
"base": "master",
|
2024-11-18 23:18:27 +08:00
|
|
|
"plugin_path": "assets/plugins.json5",
|
|
|
|
"bot_path": "assets/bots.json5",
|
|
|
|
"adapter_path": "assets/adapters.json5",
|
|
|
|
"registry_repository": "nonebot/registry"
|
2022-01-04 20:23:21 +08:00
|
|
|
}
|
2022-12-30 11:30:47 +08:00
|
|
|
env:
|
2023-04-08 00:07:39 +08:00
|
|
|
APP_ID: ${{ secrets.APP_ID }}
|
|
|
|
PRIVATE_KEY: ${{ secrets.APP_KEY }}
|
2023-06-14 17:05:52 +08:00
|
|
|
PRE_COMMIT_HOME: /github/workspace/.cache/.pre-commit
|
|
|
|
|
|
|
|
- name: Fix permission
|
|
|
|
run: sudo chown -R $(whoami):$(id -ng) .cache/.pre-commit
|