Skip to content

Commit ff5d30e

Browse files
jeremyederclaude
andcommitted
HOTFIX: Remove invalid issue_title parameter from AI assessment workflow
- Remove unsupported issue_title parameter from workflow configuration - Update all prompt files to work without explicit title template variable - AI can extract title information directly from issue body content - Fixes GitHub Actions workflow validation errors 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 525affa commit ff5d30e

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

.github/prompts/bug-assessment.prompt.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ system_prompt: |
1818
user_prompt: |
1919
Please analyze this bug report:
2020
21-
Title: {{ issue_title }}
22-
Description: {{ issue_body }}
21+
{{ issue_body }}
2322
2423
Provide your assessment in this format:
2524

.github/prompts/feature-assessment.prompt.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ system_prompt: |
2424
user_prompt: |
2525
Please analyze this feature request:
2626
27-
Title: {{ issue_title }}
28-
Description: {{ issue_body }}
27+
{{ issue_body }}
2928
3029
Provide your assessment in this format:
3130

.github/prompts/general-assessment.prompt.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ system_prompt: |
1919
user_prompt: |
2020
Please analyze this issue:
2121
22-
Title: {{ issue_title }}
23-
Description: {{ issue_body }}
22+
{{ issue_body }}
2423
2524
Provide your assessment in this format:
2625

.github/workflows/ai-assessment-comment-labeler.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
token: ${{ secrets.GITHUB_TOKEN }}
2525
issue_number: ${{ github.event.issue.number }}
2626
issue_body: ${{ github.event.issue.body }}
27-
issue_title: ${{ github.event.issue.title }}
2827
ai_review_label: 'ai-review'
2928
prompts_directory: '.github/prompts'
3029
labels_to_prompts_mapping: |

0 commit comments

Comments
 (0)