...

Text file src/github.com/spf13/viper/.github/workflows/checks.yaml

Documentation: github.com/spf13/viper/.github/workflows

     1name: PR Checks
     2
     3on:
     4  pull_request:
     5    types: [opened, labeled, unlabeled, synchronize]
     6
     7jobs:
     8  release-label:
     9    name: Release note label
    10    runs-on: ubuntu-latest
    11
    12    steps:
    13      - name: Check minimum labels
    14        uses: mheap/github-action-required-labels@4e9ef4ce8c697cf55716ecbf7f13a3d9e0b6ac6a # v5.1.0
    15        with:
    16          mode: minimum
    17          count: 1
    18          labels: |
    19            release-note/ignore
    20            kind/feature
    21            release-note/new-feature
    22            kind/enhancement
    23            release-note/enhancement
    24            kind/bug
    25            release-note/bug-fix
    26            release-note/breaking-change
    27            release-note/deprecation
    28            area/dependencies
    29            release-note/dependency-update
    30            release-note/misc

View as plain text