Skip to content

Commit

Permalink
chore: sorting a-z variables and inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
juancarlosjr97 committed Feb 11, 2024
1 parent f207869 commit 025ccfd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
15 changes: 9 additions & 6 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 025ccfd

Please sign in to comment.