mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 22:02:56 +00:00
20 lines
401 B
YAML
20 lines
401 B
YAML
name: Check user doc labels
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- labeled
|
|
- unlabeled
|
|
|
|
jobs:
|
|
|
|
check_labels:
|
|
name: Check doc labels
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: docker://agilepathway/pull-request-label-checker:latest
|
|
with:
|
|
one_of: Doc update required,Doc not needed
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|