mirror of
https://github.com/netbirdio/dex.git
synced 2026-05-22 18:43:53 -07:00
fe79863158
Bumps [mheap/github-action-required-labels](https://github.com/mheap/github-action-required-labels) from 5.5.1 to 5.5.2. - [Release notes](https://github.com/mheap/github-action-required-labels/releases) - [Commits](https://github.com/mheap/github-action-required-labels/compare/8afbe8ae6ab7647d0c9f0cfa7c2f939650d22509...0ac283b4e65c1fb28ce6079dea5546ceca98ccbe) --- updated-dependencies: - dependency-name: mheap/github-action-required-labels dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
709 B
YAML
24 lines
709 B
YAML
name: PR Checks
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, labeled, unlabeled, synchronize]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
release-label:
|
|
name: Release note label
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.repository == 'dexidp/dex'
|
|
|
|
steps:
|
|
- name: Check minimum labels
|
|
uses: mheap/github-action-required-labels@0ac283b4e65c1fb28ce6079dea5546ceca98ccbe # v5.5
|
|
with:
|
|
mode: minimum
|
|
count: 1
|
|
labels: "release-note/ignore, kind/feature, release-note/new-feature, kind/enhancement, release-note/enhancement, kind/bug, release-note/bug-fix, release-note/breaking-change, release-note/deprecation, area/dependencies, release-note/dependency-update"
|