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:
parent
60a19143b4
commit
d124f1faba
5
.github/PULL_REQUEST_TEMPLATE/default.md
vendored
5
.github/PULL_REQUEST_TEMPLATE/default.md
vendored
@ -1,5 +0,0 @@
|
||||
Fixes #
|
||||
|
||||
**Description of changes:**
|
||||
|
||||
-
|
||||
20
.github/PULL_REQUEST_TEMPLATE/pull_request_template.md
vendored
Normal file
20
.github/PULL_REQUEST_TEMPLATE/pull_request_template.md
vendored
Normal 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:**
|
||||
|
||||
-
|
||||
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
|
||||
|
||||
*
|
||||
13
.github/workflows/require-semver-labels.yml
vendored
Normal file
13
.github/workflows/require-semver-labels.yml
vendored
Normal 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"
|
||||
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"
|
||||
Loading…
Reference in New Issue
Block a user