🐛 fix: forward github.event_path to Docker container action #48
Loading…
Reference in a new issue
No description provided.
Delete branch "refs/pull/48/head"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When the
forgejo_event_pathinput is not supplied,WUMING_EVENT_PATHin theaction.ymlenv block resolved to""andGITHUB_EVENT_PATHwas not automatically inherited by the Docker container. This leftpr_indexempty on genuinepull_requestevents, causing WuMing to exit immediately with 'nothing to review'.Fix: use
${{ inputs.forgejo_event_path || github.event_path }}so the runner-provided event path is used when the caller omits the input.Closes #47