mirror of
https://github.com/immich-app/immich.git
synced 2024-11-28 09:33:27 +02:00
e4ee224e16
* feat(ci): Automatic categories in generated release notes * ci: Enforce PR labels * chore: Job name * fix: Label names
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
|
|
|