Skip to content

Commit

Permalink
ci: add user-doc label checker
Browse files Browse the repository at this point in the history
  • Loading branch information
nicecui committed Dec 20, 2023
1 parent d2f49cb commit 168788f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/user-doc-label-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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 }}

0 comments on commit 168788f

Please sign in to comment.