mirror of
https://github.com/cert-manager/webhook-example.git
synced 2025-08-22 20:22:51 +02:00
19 lines
No EOL
412 B
YAML
19 lines
No EOL
412 B
YAML
name: Check PR Labels
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, labeled, unlabeled, synchronize]
|
|
|
|
jobs:
|
|
check_labels:
|
|
name: Check labels
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: docker://agilepathway/pull-request-label-checker:latest
|
|
with:
|
|
one_of: major,minor,patch
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }} |