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 (#2985)

This commit is contained in:
Sebastian Malton 2021-08-04 05:21:26 -04:00 committed by GitHub
parent 17b14f9871
commit 14f8343170
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 30 additions and 18 deletions

View File

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

View File

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

View File

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

View File

@ -14,6 +14,7 @@ categories:
- 'area/ci'
- 'area/tests'
- 'dependencies'
- 'area/documentation'
template: |
## Changes since $PREVIOUS_TAG

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, area/documentation"