mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
709 B
23 lines
709 B
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"
|
|
|