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:
parent
17b14f9871
commit
14f8343170
5
.github/PULL_REQUEST_TEMPLATE/default.md
vendored
5
.github/PULL_REQUEST_TEMPLATE/default.md
vendored
@ -1,5 +0,0 @@
|
|||||||
Fixes #
|
|
||||||
|
|
||||||
**Description of changes:**
|
|
||||||
|
|
||||||
-
|
|
||||||
16
.github/PULL_REQUEST_TEMPLATE/pull_request_template.md
vendored
Normal file
16
.github/PULL_REQUEST_TEMPLATE/pull_request_template.md
vendored
Normal 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:**
|
||||||
|
|
||||||
|
-
|
||||||
13
.github/PULL_REQUEST_TEMPLATE/release.md
vendored
13
.github/PULL_REQUEST_TEMPLATE/release.md
vendored
@ -1,13 +0,0 @@
|
|||||||
## Changes since v
|
|
||||||
|
|
||||||
## 🚀 Features
|
|
||||||
|
|
||||||
*
|
|
||||||
|
|
||||||
## 🐛 Bug Fixes
|
|
||||||
|
|
||||||
*
|
|
||||||
|
|
||||||
## 🧰 Maintenance
|
|
||||||
|
|
||||||
*
|
|
||||||
1
.github/release-drafter.yml
vendored
1
.github/release-drafter.yml
vendored
@ -14,6 +14,7 @@ categories:
|
|||||||
- 'area/ci'
|
- 'area/ci'
|
||||||
- 'area/tests'
|
- 'area/tests'
|
||||||
- 'dependencies'
|
- 'dependencies'
|
||||||
|
- 'area/documentation'
|
||||||
|
|
||||||
template: |
|
template: |
|
||||||
## Changes since $PREVIOUS_TAG
|
## Changes since $PREVIOUS_TAG
|
||||||
|
|||||||
13
.github/workflows/require-type-labels.yml
vendored
Normal file
13
.github/workflows/require-type-labels.yml
vendored
Normal 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"
|
||||||
Loading…
Reference in New Issue
Block a user