From 9bc5a19b7faf48cac0a5949418842852ced14cb5 Mon Sep 17 00:00:00 2001 From: Ansel Robateau Date: Mon, 2 Dec 2024 17:54:21 -0600 Subject: [PATCH 1/2] =?UTF-8?q?ci:=20=F0=9F=8E=A1=20move=20jira-username?= =?UTF-8?q?=20to=20secret?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ Closes: CORE-1661 --- .github/workflows/release-notes.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml index c7a7a93..bd186b5 100644 --- a/.github/workflows/release-notes.yml +++ b/.github/workflows/release-notes.yml @@ -5,15 +5,14 @@ on: description: "The parent page to create the release notes." type: string required: true - jira-username: - description: "The JIRA username to tag the release." - type: string - required: true jira-domain: description: "The JIRA domain to tag the release." type: string required: true secrets: + jira-username: + description: "The JIRA username to tag the release." + required: true jira-api-token: description: "The JIRA API token to tag the release." required: true From 867093e4bcdd94c896d8e36f047e44505238d7ec Mon Sep 17 00:00:00 2001 From: Ansel Robateau Date: Mon, 2 Dec 2024 17:55:07 -0600 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20reference=20the=20ji?= =?UTF-8?q?ra-username=20from=20secrets?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ Closes: CORE-1661 --- .github/workflows/release-notes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml index bd186b5..ddf54ca 100644 --- a/.github/workflows/release-notes.yml +++ b/.github/workflows/release-notes.yml @@ -33,6 +33,6 @@ jobs: with: version: ${{ env.version }} parent-page: ${{ inputs.parent-page-id }} - jira-username: ${{ inputs.jira-username }} + jira-username: ${{ secrets.jira-username }} jira-domain: ${{ inputs.jira-domain }} jira-api-token: ${{ secrets.jira-api-token }} \ No newline at end of file