-
Notifications
You must be signed in to change notification settings - Fork 0
💄 Add Gitmoji's to type labels to backend #16
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,17 +1,18 @@ | ||||||||||||||||||||
| ######################################################## | ||||||||||||||||||||
| # Backend-specific Type Labels | ||||||||||||||||||||
| ######################################################## | ||||||||||||||||||||
| - name: "type: business-logic" | ||||||||||||||||||||
| - name: "type: 👔 business-logic" | ||||||||||||||||||||
| color: "#3585BD" | ||||||||||||||||||||
| description: "Business logic implementation or changes" | ||||||||||||||||||||
| aliases: [] | ||||||||||||||||||||
|
|
||||||||||||||||||||
| - name: "type: database" | ||||||||||||||||||||
| - name: "type: 🗃️ database" | ||||||||||||||||||||
| color: "#2E8B57" | ||||||||||||||||||||
| description: "Database schema, queries, or migrations" | ||||||||||||||||||||
| aliases: [] | ||||||||||||||||||||
|
Comment on lines
+9
to
12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same compatibility gap for the database label The original - aliases: []
+ aliases: ["type: database"]📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||
|
|
||||||||||||||||||||
| - name: "type: endpoint" | ||||||||||||||||||||
| - name: "type: 🔗 endpoint" | ||||||||||||||||||||
| color: "#8B572E" | ||||||||||||||||||||
| description: "Endpoint implementation or changes" | ||||||||||||||||||||
| aliases: ["🔗 endpoint"] | ||||||||||||||||||||
|
|
||||||||||||||||||||
|
Comment on lines
+14
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Endpoint label keeps only the new name in the aliases array The alias list now contains only the emoji-prefixed variant, so clients that still emit - aliases: ["🔗 endpoint"]
+ aliases: ["endpoint", "🔗 endpoint"]📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing alias for the previous label name breaks existing automation
Renaming the label from
"type: business-logic"→"type: 👔 business-logic"without keeping the old name as an alias will break any workflows, issue templates, or 3rd-party tools that still reference the original label string.
Add the legacy name as an alias:
🤖 Prompt for AI Agents