1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

PR authors must label their PRs

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-06-07 15:35:31 -04:00
parent 60a19143b4
commit d124f1faba
5 changed files with 46 additions and 18 deletions

View File

@ -1,5 +0,0 @@
Fixes #
**Description of changes:**
-

View File

@ -0,0 +1,20 @@
<!--
All PRs must be labelled with one of the following labels:
- enhancement
- bug
- chore
- area/ci
- area/tests
- dependencies
And with one of the following PRs:
- semver-major
- semver-minor
- semver-patch
-->
Fixes #
**Description of changes:**
-

View File

@ -1,13 +0,0 @@
## Changes since v
## 🚀 Features
*
## 🐛 Bug Fixes
*
## 🧰 Maintenance
*

View File

@ -0,0 +1,13 @@
name: Require Semver Labels
on:
pull_request:
types: [opened, labeled, unlabeled, synchronize]
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: mheap/github-action-required-labels@v1
with:
mode: exactly
count: 1
labels: "semver-major, semver-minor, semver-patch, area/ci, area/tests"

View File

@ -0,0 +1,13 @@
name: Require Release Category Labels
on:
pull_request:
types: [opened, labeled, unlabeled, synchronize]
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: mheap/github-action-required-labels@v1
with:
mode: exactly
count: 1
labels: "enhancement, bug, chore, area/ci, area/tests, dependencies"