mirror of
https://github.com/immich-app/immich.git
synced 2025-01-16 16:56:46 +01:00
19 lines
419 B
YAML
19 lines
419 B
YAML
|
name: PR Label Validation
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
types: [opened, labeled, unlabeled, synchronize]
|
||
|
|
||
|
jobs:
|
||
|
validate-release-label:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Require PR to have a changelog label
|
||
|
uses: mheap/github-action-required-labels@v5
|
||
|
with:
|
||
|
mode: exactly
|
||
|
count: 1
|
||
|
use_regex: true
|
||
|
labels: "changelog:.*"
|
||
|
add_comment: true
|