From f550974480ad7e9e8c879f8415647746b9d12f96 Mon Sep 17 00:00:00 2001 From: Ansel Robateau Date: Sun, 1 Dec 2024 12:25:22 -0600 Subject: [PATCH 1/2] fix: unescaped single quote --- .github/workflows/tag-tickets-with-release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tag-tickets-with-release.yml b/.github/workflows/tag-tickets-with-release.yml index 1a40008..8cdc554 100644 --- a/.github/workflows/tag-tickets-with-release.yml +++ b/.github/workflows/tag-tickets-with-release.yml @@ -58,7 +58,9 @@ jobs: gemini-api-key: ${{ secrets.llm-api-token }} prompt: ${{ steps.create_prompt.outputs.LLM_PROMPT }} - name: Debug - run: echo '${{ steps.llm_action.outputs.response }}' + run: echo "$MESSAGE" + env: + MESSAGE: ${{ steps.llm_action.outputs.response }} - uses: VirdocsSoftware/github-actions/.github/actions/tag-jira-release@main with: description: ${{ steps.llm_action.outputs.response }} From 40fe5fbece6e88b9092f25ed35f6b10fb5c7aabf Mon Sep 17 00:00:00 2001 From: Ansel Robateau Date: Sun, 1 Dec 2024 12:26:37 -0600 Subject: [PATCH 2/2] chore: update package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b5137e9..46b5e91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "github-actions", - "version": "2.4.6", + "version": "2.4.7", "description": "Used to store GitHub actions for use across the enterprise", "scripts": { "test": "./tooling/scripts/run_tests.sh",