From 50a6df4dbc2eca2dbe96289811c371c1eda1db42 Mon Sep 17 00:00:00 2001 From: "feliks.pobiedzinski@swmansion.com" Date: Wed, 18 Oct 2023 15:36:56 +0200 Subject: [PATCH] Fix path to script in GH action --- .github/actions/close_issue/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/close_issue/action.yml b/.github/actions/close_issue/action.yml index 219e16757..f9f2e0067 100644 --- a/.github/actions/close_issue/action.yml +++ b/.github/actions/close_issue/action.yml @@ -35,7 +35,7 @@ runs: gh issue edit $ISSUE_URL --add-project "Smackore" sleep 10 - export TICKET_ID=$(gh project item-list $PROJECT_NUMBER --owner membraneframework --format json --limit 10000000 | elixir get_ticket_id.exs "$ISSUE_URL" | awk '/TICKET_ID/{print $2}') + export TICKET_ID=$(gh project item-list $PROJECT_NUMBER --owner membraneframework --format json --limit 10000000 | elixir ./scripts/get_ticket_id.exs "$ISSUE_URL" | awk '/TICKET_ID/{print $2}') gh issue close $ISSUE_URL --comment "$ISSUE_CLOSE_COMMENT" --reason "not planned" sleep 10