From 0d3e05b80259b0c54fb98306af6bcd658e9173b9 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 13 Dec 2021 17:50:33 +0100 Subject: [PATCH] Fix use of `CONTENT` in `binder-link` action --- .github/actions/binder-link/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/binder-link/action.yml b/.github/actions/binder-link/action.yml index f21012c..89f741e 100644 --- a/.github/actions/binder-link/action.yml +++ b/.github/actions/binder-link/action.yml @@ -26,7 +26,7 @@ runs: body: BODY }; if ("${{ inputs.github_token }}" !== "FAKE") { - github.issues.createComment($CONTENT); + github.issues.createComment(CONTENT); } env: PR_HEAD_REF: ${{ github.event.pull_request.head.ref }}