mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-03 11:52:54 +00:00
* ci: implement docbot in cyborg Signed-off-by: tison <wander4096@gmail.com> * allow remove non-existing label Signed-off-by: tison <wander4096@gmail.com> * fixup Signed-off-by: tison <wander4096@gmail.com> * fixup org name Signed-off-by: tison <wander4096@gmail.com> * fixup step name Signed-off-by: tison <wander4096@gmail.com> * remove unused file Signed-off-by: tison <wander4096@gmail.com> --------- Signed-off-by: tison <wander4096@gmail.com>
25 lines
567 B
YAML
25 lines
567 B
YAML
name: Schedule Management
|
|
on:
|
|
schedule:
|
|
- cron: '4 2 * * *'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
maintenance:
|
|
name: Periodic Maintenance
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.repository == 'GreptimeTeam/greptimedb' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/setup-cyborg
|
|
- name: Do Maintenance
|
|
working-directory: cyborg
|
|
run: pnpm tsx bin/schedule.ts
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|