Fix assign-issue-action: revert to v2.2 (v3.0.0 is broken) #1123

Closed
opened 2026-04-05 16:52:16 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @okets on 1/10/2026

Summary

The Assign Issue workflow is failing because v3.0.0 of takanome-dev/assign-issue-action has a publishing bug.

The Problem

  • action.yml references dist/index.js
  • But v3.0.0 only contains dist/index.mjs
  • Every workflow run fails immediately with: File not found: dist/index.js

This PR

  • Reverts to v2.2 which works correctly
  • Reverts reminder_days to 7 (v2.2 behavior: days before unassignment, not after assignment)
  • Adds comment with link to upstream bug report

Evidence

v3.0.0 only has index.mjs:

$ gh api "repos/takanome-dev/assign-issue-action/contents/dist?ref=v3.0.0" --jq '.[].name'
index.mjs
licenses.txt

v2.2 has index.js (correct):

$ gh api "repos/takanome-dev/assign-issue-action/contents/dist?ref=v2.2" --jq '.[].name'
index.js
licenses.txt
package.json

Test plan

References

🤖 Generated with Claude Code

*Originally created by @okets on 1/10/2026* ## Summary The Assign Issue workflow is failing because v3.0.0 of `takanome-dev/assign-issue-action` has a publishing bug. ### The Problem - `action.yml` references `dist/index.js` - But v3.0.0 only contains `dist/index.mjs` - Every workflow run fails immediately with: `File not found: dist/index.js` ### This PR - Reverts to v2.2 which works correctly - Reverts `reminder_days` to 7 (v2.2 behavior: days *before* unassignment, not *after* assignment) - Adds comment with link to upstream bug report ### Evidence v3.0.0 only has index.mjs: ``` $ gh api "repos/takanome-dev/assign-issue-action/contents/dist?ref=v3.0.0" --jq '.[].name' index.mjs licenses.txt ``` v2.2 has index.js (correct): ``` $ gh api "repos/takanome-dev/assign-issue-action/contents/dist?ref=v2.2" --jq '.[].name' index.js licenses.txt package.json ``` ## Test plan - [x] Verified v2.2 works on fork: https://github.com/okets/OrcaMCP/actions/runs/20880211211 ## References - Bug report filed: https://github.com/takanome-dev/assign-issue-action/issues/426 - Fixes #11873 🤖 Generated with [Claude Code](https://claude.ai/code)
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/OrcaSlicer#1123