Refactor/188 auto tag song pre fetch#190
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Review Summary by QodoClarify autoTagSong JSON output format and pause tagging workflow
WalkthroughsDescription• Add explicit JSON output format instructions to autoTagSong prompt • Clarify tag_ids array structure in LLM response format • Temporarily disable tagging song workflow cron schedule Diagramflowchart LR
A["autoTagSong Prompt"] -->|"Add JSON format instructions"| B["Explicit Output Format"]
B -->|"tag_ids flat array"| C["Structured JSON Response"]
D["Tagging Workflow"] -->|"Disable cron schedule"| E["Manual Dispatch Only"]
File Changes1. packages/crawling/src/utils/getSongTag.ts
|
Code Review by Qodo
|
| # on: | ||
| # schedule: | ||
| # - cron: "0 10 * * *" # 한국 시간 19:00 실행 (UTC+9 → UTC 10:00) | ||
| # workflow_dispatch: |
There was a problem hiding this comment.
1. Workflow triggers disabled 🐞 Bug ☼ Reliability
.github/workflows/tagging_song.yml has its entire on: section commented out, so the workflow will not run on schedule and cannot be manually dispatched. This disables the automated song-tagging pipeline that the repo documentation says should run daily and be manually runnable.
Agent Prompt
## Issue description
The GitHub Actions workflow `.github/workflows/tagging_song.yml` has no triggers because the `on:` block (schedule + workflow_dispatch) is commented out. This prevents scheduled runs and manual dispatch, effectively disabling tagging automation.
## Issue Context
`packages/crawling/CLAUDE.md` documents that `tagging_song.yml` runs daily and supports manual dispatch.
## Fix Focus Areas
- .github/workflows/tagging_song.yml[1-7]
- packages/crawling/CLAUDE.md[120-130]
## Suggested fix
- Uncomment/restore the `on:` block with `schedule` and `workflow_dispatch`.
- If disabling is intentional, update `packages/crawling/CLAUDE.md` to reflect the new behavior and provide an alternative execution path.
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
📌 PR 제목
[Type] : 작업 내용 요약
📌 변경 사항
💬 추가 참고 사항