mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
32 lines
754 B
YAML
32 lines
754 B
YAML
|
name: check-milestone-label
|
||
|
|
||
|
permissions: {}
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- 'main'
|
||
|
types:
|
||
|
- opened
|
||
|
- synchronize
|
||
|
- edited
|
||
|
- reopened
|
||
|
- labeled
|
||
|
- unlabeled
|
||
|
|
||
|
concurrency:
|
||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
check_labels:
|
||
|
name: Check milestone label for pull request
|
||
|
runs-on: ubuntu-latest
|
||
|
if: ${{ github.actor != 'dependabot[bot]' }} # dependabot prs do not have to be in milestone
|
||
|
steps:
|
||
|
- name: require milestone label for pull request
|
||
|
uses: docker://agilepathway/pull-request-label-checker:latest
|
||
|
with:
|
||
|
prefix_mode: true
|
||
|
one_of: "milestone"
|
||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|