diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0df266a..45070ba 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -81,8 +81,8 @@ jobs: git_email: ${{ vars.GIT_EMAIL }} git_username: ${{ vars.GIT_USERNAME }} github_token: ${{ secrets.PROJECT_GITHUB_TOKEN }} - gpg_private_key_id: ${{ secrets.GPG_PRIVATE_KEY_ID }} gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} + gpg_private_key_id: ${{ secrets.GPG_PRIVATE_KEY_ID }} image_tag: ${{ github.sha }} plugins_list: "@release-it/conventional-changelog@latest,@release-it/bumper@latest" ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} diff --git a/action.yaml b/action.yaml index 65658de..824734a 100644 --- a/action.yaml +++ b/action.yaml @@ -7,44 +7,47 @@ branding: color: red inputs: command: + default: "--ci" description: Command to execute release-it required: false - default: "--ci" git_email: + default: ${{ github.actor }} description: Git email to run release-it required: false - default: ${{ github.actor }} git_username: + default: "${{ github.actor }}@users.noreply.github.com" description: Git username to run release-it required: false - default: "${{ github.actor }}@users.noreply.github.com" github_token: + default: ${{ github.token }} description: Github Token to run release-it required: true - default: ${{ github.token }} gpg_private_key: + default: "" description: GPG Private Key required: false gpg_private_key_id: + default: "" description: GPG Private Key ID required: false image_tag: + default: "latest" description: Image tag used to pass specific version of the action required: false - default: "latest" plugins_list: + default: "" description: List of Plugins to run with release-it as comma separated required: false - default: "" ssh_private_key: + default: "" description: SSH Private Key required: false