mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:04:16 -04:00
* add npm prettier dep and format script to .github folder * initial work on prettier formatting test * attempt index notation * change name of .github job to be valid * another use of index notation this is getting overcomplicated * Change job ID to `github-files-formatting` and chane the name to `.github Files Checks` * Change job name to `.github Files Formatting` * Update Makefile with .github module and `filter-out`s * run prettier formatting as added in this PR
23 lines
686 B
YAML
23 lines
686 B
YAML
name: PR Label Validation
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, labeled, unlabeled, synchronize]
|
|
|
|
jobs:
|
|
validate-release-label:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- name: Require PR to have a changelog label
|
|
uses: mheap/github-action-required-labels@388fd6af37b34cdfe5a23b37060e763217e58b03 # v5
|
|
with:
|
|
mode: exactly
|
|
count: 1
|
|
use_regex: true
|
|
labels: 'changelog:.*'
|
|
add_comment: true
|
|
message: 'Label error. Requires {{errorString}} {{count}} of: {{ provided }}. Found: {{ applied }}. A maintainer will add the required label.'
|