From c95fd501554735004a258c3189940f7e0fcdea48 Mon Sep 17 00:00:00 2001 From: Ansel Robateau Date: Wed, 27 Nov 2024 12:16:04 -0600 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20pass=20the=20jira-usernam?= =?UTF-8?q?e=20as=20a=20secret?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ Closes: CORE-1490 --- .github/workflows/tag-tickets-with-release.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tag-tickets-with-release.yml b/.github/workflows/tag-tickets-with-release.yml index dbdb772..1a40008 100644 --- a/.github/workflows/tag-tickets-with-release.yml +++ b/.github/workflows/tag-tickets-with-release.yml @@ -19,14 +19,13 @@ on: type: boolean required: false default: false - jira-username: - description: "The JIRA username to tag the release." - type: string - required: true secrets: llm-api-token: description: "A valid LLM API token to be used by the action." required: true + jira-username: + description: "The JIRA username to tag the release." + required: true jira-api-token: description: "A valid JIRA API token to be used by the action." required: true @@ -65,7 +64,7 @@ jobs: description: ${{ steps.llm_action.outputs.response }} target-branch: ${{ inputs.target-branch }} jira-token: ${{ secrets.jira-api-token }} - jira-email: ${{ inputs.jira-username }} + jira-email: ${{ secrets.jira-username }} jira-domain: ${{ inputs.jira-domain }} dry-run: ${{ inputs.dry-run }} is-release: ${{ inputs.is-release }} \ No newline at end of file