diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml index c7a7a93..ddf54ca 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 @@ -34,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