Conversation
- 新しい優先度ラベル(soba:todo:high、soba:todo:low)を追加 - 優先度判定ロジック(getPriority)を実装 - 優先度順ソート機能(sortByPriority)を実装 - selectMinimumIssueをselectPriorityIssueに置き換え - TDDアプローチで完全なテストカバレッジを確保 優先順位ルール: 1. 高優先度(soba:todo:high) 2. 通常優先度(soba:todo) 3. 低優先度(soba:todo:low) 同一優先度内ではIssue番号順を保持
Owner
Author
Review Results✅ Decision
🔄 Merge Status
👍 Good Points
🔧 Improvement Suggestionsなし - 実装は計画通りで、全ての要件を満たしています。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implementation Complete
fixes #159
Changes
GetSobaLabels()に優先度ラベル(soba:todo:high、soba:todo:low)を追加QueueManagerに優先度判定ロジック(getPriority())を実装sortByPriority())を実装selectMinimumIssue()からselectPriorityIssue()に変更Priority Rules
soba:todo:highラベルのIssue(Issue番号が若いものから)soba:todoラベルのIssue(Issue番号が若いものから)soba:todo:lowラベルのIssue(Issue番号が若いものから)複数の優先度ラベルが付いている場合は最高優先度を採用します。
Test Results
Checklist
soba:todoは通常優先度として動作)