Skip to content

Commit

Permalink
🔧 labeler の定義を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsutakein committed Nov 22, 2023
1 parent a66c7f3 commit a78b39b
Showing 1 changed file with 23 additions and 18 deletions.
41 changes: 23 additions & 18 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,52 +3,57 @@ version: 1
labels:
# Type labels
- label: "@type/feature"
title:
- '^:sparkles:'
- '^:tada:'
- '^:art:'
title: "^:sparkles:.*"
- label: "@type/feature"
title: "^:tada:.*"
- label: "@type/feature"
title: "^:art:.*"
- label: "@type/improve"
title: "^:+1:.*"
- label: "@type/improve"
title: "^:recycle:.*"
- label: "@type/improve"
title:
- '^:+1:'
- '^:recycle:'
- '^:rocket:'
title: "^:rocket:.*"
- label: "@type/fix"
title: '^:bug:'
title: "^:bug:.*"
- label: "@type/docs"
title: "^:books:.*"
- label: "@type/docs"
title: '^:books:'
files:
- "docs/.+"
- label: "@type/build"
title:
- '^:wrench:'
- '^:up:'
title: "^:wrench:.*"
- label: "@type/build"
title: "^:up:.*"
- label: "@type/build"
files:
- "settings.gradle.kts"
- "**/build.gradle.kts"
- "gradle/.+"
- "tools/.+"
- label: "@type/ci"
title: '^:green_heart:'
title: "^:green_heart:.*"
- label: "@type/ci"
files:
- '\.github/.+'
- "\.github/.+"

# App module labels
- label: "@app/android"
files:
- "app/android/.+"
- '**/androidMain/**/.+'
- "**/androidMain/**/.+"
- label: "@app/backend"
files:
- "app/backend/.+"
- label: "@app/ios"
files:
- "app/ios/.+"
- "app/ios-combined/.+"
- '**/iosMain/**/.+'
- "**/iosMain/**/.+"
- label: "@app/frontend"
files:
- "app/web/.+"
- '**/jsMain/**/.+'
- "**/jsMain/**/.+"

# Core module labels
- label: "@core/common"
Expand Down

0 comments on commit a78b39b

Please sign in to comment.