From 33e1c788f43cf77f6e6134390352da6dd1a3f81f Mon Sep 17 00:00:00 2001 From: Patrick Schratz Date: Mon, 9 Dec 2024 08:25:40 +0100 Subject: [PATCH] Don't pre-eval custom env var in links pipeline (#4538) --- .woodpecker/links.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker/links.yaml b/.woodpecker/links.yaml index c006448d8..b97a2e9cd 100644 --- a/.woodpecker/links.yaml +++ b/.woodpecker/links.yaml @@ -27,5 +27,5 @@ steps: curl -X PATCH \ -H "Authorization: token $GITHUB_TOKEN" \ -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/${CI_REPO}/issues/${ISSUE_NUMBER} \ + https://api.github.com/repos/${CI_REPO}/issues/$ISSUE_NUMBER \ -d "$(jq -n --arg body "$DESCRIPTION" '{body: $body}')"