mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 20:48:58 +01:00
15 lines
337 B
YAML
15 lines
337 B
YAML
|
name: Enforce PR labels
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
types: [labeled, unlabeled, opened, edited, synchronize]
|
||
|
|
||
|
jobs:
|
||
|
enforce-label:
|
||
|
name: Specify breaking
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: yogevbd/enforce-label-action@2.1.0
|
||
|
with:
|
||
|
REQUIRED_LABELS_ANY: 'no breaking,DB breaking,API breaking,skip changelog'
|