mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 13:52:59 +00:00
* chore(ci): auto doc labeler job Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * tweak rules Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
20 lines
427 B
YAML
20 lines
427 B
YAML
name: "PR Doc Labeler"
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: read
|
|
|
|
jobs:
|
|
triage:
|
|
if: ${{ github.repository == 'GreptimeTeam/greptimedb' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: github/issue-labeler@v3.3
|
|
with:
|
|
configuration-path: .github/doc-label-config.yml
|
|
enable-versioned-regex: false
|
|
repo-token: ${{ github.token }}
|