Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve GitHub Label related #113

Merged
merged 3 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1-feature-request.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 🎉 Feature Request
description: Request a new feature or enhancement to an existing feature
labels: ["Type: Feature"]
labels: ["🎉 New Feature"]
body:
- type: textarea
id: feature-description
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2-bug-report.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 🧰 Bug Report
description: Something doesn't work
labels: ["Type: Bug"]
labels: ["🧰 Bug"]
body:
- type: textarea
id: bug-description
Expand Down
3 changes: 2 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ close #

### 🔄 Type of the Change

- [ ] 🎉 Feature
- [ ] 🎉 New Feature
- [ ] 🧰 Bug
- [ ] 🛡️ Security
- [ ] 📖 Documentation
- [ ] 🏎️ Performance
- [ ] 🧹 Refactoring
- [ ] 🧪 Testing
- [ ] 🔧 Maintenance
Expand Down
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ updates:
directory: "/"
schedule:
interval: "daily"
labels: []
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
labels: []
30 changes: 16 additions & 14 deletions .github/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,29 @@ searchTitle: true
searchBody: true

customLabels:
- text: "- [x] 🎉 Feature"
label: "Type: Feature"
- text: "- [x] 🎉 New Feature"
label: "🎉 New Feature"
- text: "- [x] 🧰 Bug"
label: "Type: Bug"
label: "🧰 Bug"
- text: "- [x] 🛡️ Security"
label: "Type: Security"
label: "🛡️ Security"
- text: "- [x] 📖 Documentation"
label: "Type: Documentation"
label: "📖 Documentation"
- text: "- [x] 🏎️ Performance"
label: "🏎️ Performance"
- text: "- [x] 🧹 Refactoring"
label: "Type: Refactoring"
label: "🧹 Refactoring"
- text: "- [x] 🧪 Testing"
label: "Type: Testing"
label: "🧪 Testing"
- text: "- [x] 🔧 Maintenance"
label: "Type: Maintenance"
label: "🔧 Maintenance"
- text: "- [x] 🎽 CI"
label: "Type: CI"
label: "🎽 CI"
- text: "- [x] ⛓️ Dependencies"
label: "Type: Dependencies"
label: "⛓️ Dependencies"
- text: "chore(deps): "
label: "Type: Dependencies"
label: "⛓️ Dependencies"
- text: "- [x] 🧠 Meta"
label: "Type: Meta"
- text: "Release for v"
label: "Type: Release"
label: "🧠 Meta"
- text: "Release v"
label: "🚀 Release"
49 changes: 25 additions & 24 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@
changelog:
exclude:
labels:
- "Type: Meta"
- "Type: Question"
- "Type: Release"
- "🧠 Meta"
- "🚀 Release"

categories:
- title: 🧨 Breaking Changes
labels: ["Type: Breaking Change"]
- title: 🎉 New Features
labels: ["Type: Feature"]
- title: 🧰 Bug Fixes
labels: ["Type: Bug"]
- title: 🛡️ Security Fixes
labels: ["Type: Security"]
- title: 📖 Documentation Changes
labels: ["Type: Documentation"]
- title: 🧹 Refactoring
labels: ["Type: Refactoring"]
- title: 🧪 Testing
labels: ["Type: Testing"]
- title: 🔧 Maintenance
labels: ["Type: Maintenance"]
- title: 🎽 CI
labels: ["Type: CI"]
- title: ⛓️ Dependency Updates
labels: ["Type: Dependencies", "dependencies"]
- title: 🔍 Other Changes
- title: "🧨 Breaking Changes"
labels: ["🧨 Breaking Change"]
- title: "🎉 New Features"
labels: ["🎉 New Feature"]
- title: "🧰 Bug Fixes"
labels: ["🧰 Bug"]
- title: "🛡️ Security Fixes"
labels: ["🛡️ Security"]
- title: "📖 Documentation Changes"
labels: ["📖 Documentation"]
- title: "🏎️ Performance Improvements"
labels: ["🏎️ Performance"]
- title: "🧹 Refactoring"
labels: ["🧹 Refactoring"]
- title: "🧪 Testing"
labels: ["🧪 Testing"]
- title: "🔧 Maintenance"
labels: ["🔧 Maintenance"]
- title: "🎽 CI"
labels: ["🎽 CI"]
- title: "⛓️ Dependency Updates"
labels: ["⛓️ Dependencies"]
- title: "🔍 Other Changes"
labels: ["*"]
3 changes: 1 addition & 2 deletions .github/workflows/go-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,10 @@ jobs:
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
with:
commit-message: |
chore(setup): Version up Go
chore(deps): Version up Go

Change Go version to v${{ steps.go.outputs.version }}.
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
branch: bump-go
title: "chore(deps): Bump Go version to ${{ steps.go.outputs.version }}"
body: Bumps Go version to ${{ steps.go.outputs.version }}
labels: "Type: Dependencies"
Loading