소스 검색

ci: add developer-only issue template

Add a new issue template specifically for developer use to separate internal tasks from regular user reports. The template includes clear instructions for users and provides a structured format for developer tasks.
TheWildJames 10 달 전
부모
커밋
a808f61d10
1개의 변경된 파일30개의 추가작업 그리고 0개의 파일을 삭제
  1. 30 0
      .github/ISSUE_TEMPLATE/dev_use_only.yml

+ 30 - 0
.github/ISSUE_TEMPLATE/dev_use_only.yml

@@ -0,0 +1,30 @@
+name: "🔧 Developer Use Only"
+description: "This template is reserved for developer use only. Do not use for regular bug reports or feature requests."
+title: "[DEV] "
+labels: ["dev-only"]
+assignees: []
+body:
+  - type: markdown
+    attributes:
+      value: |
+        ## ⚠️ Developer Use Only
+        
+        This issue template is reserved for internal development purposes only.
+        
+        **For regular users:**
+        - Use the [Bug Report](bug_report.yml) template for bugs
+        - Use the [Feature Request](feature_request.yml) template for new features
+        
+        ---
+        
+        **Developer Instructions:**
+        This is a blank template for consolidating issues, tracking internal tasks, or other development purposes.
+        
+  - type: textarea
+    id: content
+    attributes:
+      label: "Content"
+      description: "Add your content here"
+      placeholder: "Enter your issue content..."
+    validations:
+      required: true