mirror of
https://github.com/immich-app/immich.git
synced 2024-12-26 10:50:29 +02:00
14 lines
269 B
YAML
14 lines
269 B
YAML
|
name: Enforce PR labels
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
types: [labeled, unlabeled, opened, edited, synchronize]
|
||
|
jobs:
|
||
|
enforce-label:
|
||
|
name: Enforce label
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- if: toJson(github.event.pull_request.labels) == '[]'
|
||
|
run: exit 1
|
||
|
|