-
Notifications
You must be signed in to change notification settings - Fork 69
34 lines (27 loc) · 871 Bytes
/
documentbot.yml
File metadata and controls
34 lines (27 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# Copyright (c) 2019 - 2024 StreamNative, Inc.. All Rights Reserved.
#
name: Auto Labeling
on:
pull_request_target :
types:
- opened
- edited
- labeled
# A GitHub token created for a PR coming from a fork doesn't have
# 'admin' or 'write' permission (which is required to add labels)
# To avoid this issue, you can use the `scheduled` event and run
# this action on a certain interval.And check the label about the
# document.
jobs:
labeling:
if: ${{ github.repository == 'streamnative/charts' }}
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: streamnative/github-workflow-libraries/doc-label-check@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
label-pattern: '- \[(.*?)\] ?`(.+?)`' # matches '- [x] `label`'