-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
- Loading branch information
1 parent
493c0eb
commit fdef42a
Showing
3 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 🚀 Feature request | ||
name: 🎉 Feature request | ||
description: Suggest an idea for Dex | ||
body: | ||
- type: markdown | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- release-note/ignore | ||
categories: | ||
- title: Exciting New Features 🎉 | ||
labels: | ||
- kind/feature | ||
- release-note/new-feature | ||
- title: Enhancements 🚀 | ||
labels: | ||
- kind/enhancement | ||
- release-note/enhancement | ||
- title: Bug fixes 🐛 | ||
labels: | ||
- kind/bug | ||
- release-note/bug-fix | ||
- title: Breaking Changes 🛠 | ||
labels: | ||
- release-note/breaking-change | ||
- title: Deprecations ❌ | ||
labels: | ||
- release-note/deprecation | ||
- title: Dependency updates ⬆️ | ||
labels: | ||
- area/dependencies | ||
- release-note/dependency-update | ||
- title: Other Changes | ||
labels: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: PR Checks | ||
|
||
on: | ||
pull_request: | ||
types: [opened, labeled, unlabeled, synchronize] | ||
|
||
jobs: | ||
release-label: | ||
name: Release note label | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check minimum labels | ||
uses: mheap/github-action-required-labels@v1 | ||
with: | ||
mode: minimum | ||
count: 1 | ||
labels: "release-note/ignore, kind/feature, release-note/new-feature, kind/enhancement, release-note/enhancement, kind/bug, release-note/bug-fix, release-note/breaking-change, release-note/deprecation, area/dependencies, release-note/dependency-update" |