Skip to content

Commit c37d5a8

Browse files
committed
Add AMD label system and project automation
- Add comprehensive labels.yml with all priority, type, status, platform, hardware, component, model, and test labels - Add AMD issue templates (800-860 series) for bug, ci-failure, documentation, feature, infrastructure, performance, and usage - Add amd_project_automation.yml workflow to auto-assign issues: - amd-ci label -> AMD CI project (vllm-project#39) - amd label (w/o amd-ci) -> AMD project (vllm-project#38) - Update issue_autolabel.yml to add 'amd' label when rocm detected - Add sync_labels.yml workflow to sync labels from labels.yml - Update config.yml with AMD ROCm discussions link Labels routing: - CI failures use 'amd-ci' label -> routes to project vllm-project#39 - All other AMD issues use 'amd' label -> routes to project vllm-project#38
1 parent f72a817 commit c37d5a8

12 files changed

+575
-3
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: "[AMD] Bug report"
2+
description: Report a bug specific to AMD/ROCm platform
3+
title: "[AMD Bug]: "
4+
labels: ["bug", "rocm", "amd", "needs-triage"]
5+
6+
body:
7+
# Template content to be added
8+
- type: markdown
9+
attributes:
10+
value: "AMD ROCm Bug Report - Content to be configured"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: "[AMD] CI failure report"
2+
description: Report a failing test in AMD CI pipeline
3+
title: "[AMD CI Failure]: "
4+
labels: ["ci-failure", "rocm", "amd-ci", "needs-triage"]
5+
6+
body:
7+
# Template content to be added
8+
- type: markdown
9+
attributes:
10+
value: "AMD CI Failure Report - Content to be configured"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: "[AMD] Documentation"
2+
description: Report documentation issues for AMD/ROCm
3+
title: "[AMD Docs]: "
4+
labels: ["documentation", "rocm", "amd", "needs-triage"]
5+
6+
body:
7+
# Template content to be added
8+
- type: markdown
9+
attributes:
10+
value: "AMD Documentation Issue - Content to be configured"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: "[AMD] Feature request"
2+
description: Request a new feature for AMD/ROCm platform
3+
title: "[AMD Feature]: "
4+
labels: ["enhancement", "rocm", "amd", "needs-triage"]
5+
6+
body:
7+
# Template content to be added
8+
- type: markdown
9+
attributes:
10+
value: "AMD Feature Request - Content to be configured"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: "[AMD] Infrastructure"
2+
description: Report AMD CI/build infrastructure issues
3+
title: "[AMD Infra]: "
4+
labels: ["infrastructure", "rocm", "amd", "needs-triage"]
5+
6+
body:
7+
# Template content to be added
8+
- type: markdown
9+
attributes:
10+
value: "AMD Infrastructure Issue - Content to be configured"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: "[AMD] Performance"
2+
description: Report performance issues or improvements for AMD/ROCm
3+
title: "[AMD Performance]: "
4+
labels: ["performance", "rocm", "amd", "needs-triage"]
5+
6+
body:
7+
# Template content to be added
8+
- type: markdown
9+
attributes:
10+
value: "AMD Performance Issue - Content to be configured"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: "[AMD] Usage question"
2+
description: Ask questions about using vLLM on AMD/ROCm
3+
title: "[AMD Usage]: "
4+
labels: ["rocm", "amd", "needs-triage"]
5+
6+
body:
7+
# Template content to be added
8+
- type: markdown
9+
attributes:
10+
value: "AMD Usage Question - Content to be configured"

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ contact_links:
33
- name: Questions
44
url: https://discuss.vllm.ai
55
about: Ask questions and discuss with other vLLM community members
6+
- name: AMD ROCm Discussions
7+
url: https://github.com/vllm-project/vllm/discussions/categories/rocm
8+
about: Discuss AMD ROCm specific questions with the community

0 commit comments

Comments
 (0)