Skip to content

Commit

Permalink
feat: added new labels categories for PRs and commits
Browse files Browse the repository at this point in the history
  • Loading branch information
fra98 committed Nov 25, 2024
1 parent e6f294e commit 9ef83b9
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Bug report
about: Report a bug encountered while using Liqo
labels: kind/bug
labels: kind/fix

---

Expand Down
27 changes: 24 additions & 3 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,37 @@ changelog:
- kind/breaking
- title: ":rocket: New Features"
labels:
- kind/feature
- kind/feat
- title: ":bug: Bug Fixes"
labels:
- kind/bug
- kind/fix
- title: ":broom: Code Refactoring"
labels:
- kind/cleanup
- kind/refactor
- title: ":memo: Documentation"
labels:
- kind/docs
- title: ":lipstick: Code Style"
labels:
- kind/style
- title: ":racehorse: Performance Improvement"
labels:
- kind/perf
- title: ":white_check_mark: Tests"
labels:
- kind/test
- title: ":truck: Dependencies Management"
labels:
- kind/chore
- title: ":package: Builds Management"
labels:
- kind/build
- title: ":construction_worker: CI/CD"
labels:
- kind/ci
- title: ":rewind: Reverts Previous Changes"
labels:
- kind/revert
- title: Other Changes
labels:
- "*"
14 changes: 11 additions & 3 deletions .github/workflows/greeting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,15 @@ jobs:
Make sure this PR appears in the **${{ github.event.repository.name }} changelog**, adding one of the following **labels**:
* `kind/breaking`: :boom: Breaking Change
* `kind/feature`: :rocket: New Feature
* `kind/bug`: :bug: Bug Fix
* `kind/cleanup`: :broom: Code Refactoring
* `kind/feat`: :rocket: New Feature
* `kind/fix`: :bug: Bug Fix
* `kind/refactor`: :broom: Code Refactoring
* `kind/docs`: :memo: Documentation
* `kind/style`: :lipstick: Code Style
* `kind/perf`: :racehorse: Performance Improvement
* `kind/test`: :white_check_mark: Tests
* `kind/chore`: :truck: Dependencies Management
* `kind/build`: :package: Builds Management
* `kind/ci`: :construction_worker: CI/CD
* `kind/revert`: :rewind: Reverts Previous Changes
13 changes: 10 additions & 3 deletions docs/contributing/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,17 @@ Liqo leverages the automatic release notes generation capabilities featured by G
Specifically, PRs characterized by the following labels get included in the respective category:

* *kind/breaking*: 💥 Breaking Change
* *kind/feature*: 🚀 New Features
* *kind/bug*: 🐛 Bug Fixes
* *kind/cleanup*: 🧹 Code Refactoring
* *kind/feat*: 🚀 New Features
* *kind/fix*: 🐛 Bug Fixes
* *kind/refactor*: 🧹 Code Refactoring
* *kind/docs*: 📝 Documentation
* *kind/style: 💄Code Style
* *kind/perf: 🐎 Performance Improvement
* *kind/test: ✅ Tests
* *kind/chore: 🚚 Dependencies Management
* *kind/build: 📦 Builds Management
* *kind/ci: 👷 CI/CD
* *kind/revert: ⏪ Reverts Previous Changes

## Local development

Expand Down

0 comments on commit 9ef83b9

Please sign in to comment.