We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fc1b64 commit c7c0903Copy full SHA for c7c0903
1 file changed
.github/actions/eval-gate-report/action.yml
@@ -42,7 +42,11 @@ runs:
42
exit 1
43
fi
44
45
- renderer="$GITHUB_WORKSPACE/.github/actions/eval-gate/render-comment.sh"
+ # Resolve the renderer from the action's own checkout, not the consumer's workspace. When this
46
+ # action is used remotely (dokimos-dev/dokimos/.github/actions/eval-gate-report@v0), the whole
47
+ # repo is checked out under GITHUB_ACTION_PATH, so the sibling eval-gate script is reachable;
48
+ # GITHUB_WORKSPACE would point at the consumer's repo, which does not have the script.
49
+ renderer="$GITHUB_ACTION_PATH/../eval-gate/render-comment.sh"
50
overall="NO_BASELINE"
51
# gate-comment.md is CWD-relative; the comment step reads it from the same composite-step CWD.
52
: > gate-comment.md
0 commit comments