Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/01-command_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,16 @@ body:
label: Which command is this bug report for?
options:
- build
- dev
- generate
- help
- install
- login
- logout
- new
- publish
- start
- unpublish
- other
validations:
required: true
Expand Down
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/02-feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@ body:
label: Which command is this feature request for?
options:
- build
- dev
- generate
- help
- install
- login
- logout
- new
- publish
- start
- unpublish
- other
validations:
required: true
Expand Down
12 changes: 12 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,24 @@ command:new:
- src/command/commands/new.command.ts
- src/action/actions/new.action.ts

command:publish:
- changed-files:
- any-glob-to-any-file:
- src/command/commands/publish.command.ts
- src/action/actions/publish.action.ts

command:start:
- changed-files:
- any-glob-to-any-file:
- src/command/commands/start.command.ts
- src/action/actions/start.action.ts

command:unpublish:
- changed-files:
- any-glob-to-any-file:
- src/command/commands/unpublish.command.ts
- src/action/actions/unpublish.action.ts

documentation:
- changed-files:
- any-glob-to-any-file:
Expand Down
8 changes: 8 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,18 @@
description: "Related to new command"
color: "aaa3dc"

- name: "command:publish"
description: "Related to publish command"
color: "aaa3dc"

- name: "command:start"
description: "Related to start command"
color: "aaa3dc"

- name: "command:unpublish"
description: "Related to unpublish command"
color: "aaa3dc"

- name: "question"
description: "Further information is requested"
color: "d876e3"
Expand Down
Loading
Loading