mirror of
https://github.com/minio/minio-rs.git
synced 2025-12-06 23:36:52 +08:00
19 lines
416 B
YAML
19 lines
416 B
YAML
name: Label Checker
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- labeled
|
|
- unlabeled
|
|
|
|
jobs:
|
|
|
|
check_labels:
|
|
name: Check for labels
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: docker://agilepathway/pull-request-label-checker:latest
|
|
with:
|
|
one_of: highlight,breaking-change,security-fix,enhancement,bug
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }} |