update inouts descriptions

Signed-off-by: GuillaumeFalourd <guillaume.falourd@zup.com.br>
This commit is contained in:
GuillaumeFalourd 2021-10-21 15:31:33 -03:00
parent c502e22daa
commit ad666fad87
2 changed files with 12 additions and 12 deletions

View file

@ -59,10 +59,10 @@ Field | Mandatory | Default Value | Observation
------------ | ------------ | ------------- | -------------
**email** | NO | `${{ github.actor }}@users.noreply.github.com` | Github user email <br/> _e.g: `octocat@github.com`_
**name** | NO | `${{ github.actor }}` | Github username <br/> _e.g: `octocat`_
**commit_message** | NO | | The commit message
**target_branch** | NO | `${{ github.ref }}` | The branch to push the changes back to
**files** | NO | `.` (all) | The files to add separated by space <br/> _e.g: `file1 file2 directory1 directory2/file3`_
**remote_repository** | NO | `origin` | The repository to push the code to
**commit_message** | NO | | Commit message
**target_branch** | NO | `${{ github.ref }}` | Branch to push the changes back
**files** | NO | `.` (all) | Files to add separated by space <br/> _e.g: `file1 file2 directory1 directory2/file3`_
**remote_repository** | NO | `origin` | Repository to push the code
**access_token** | NO | `${{ github.token }}` | [Personal Access Token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token) (necessary if push to another repository).
**force** | NO | | Whether to perform force push
**empty** | NO | | Whether to allow empty commit

View file

@ -4,31 +4,31 @@ description: 'GitHub Action to commit & push changes made in workflows to upstre
inputs:
email:
description: The committer's email address
description: Committer's email address
required: true
default: ${{ github.actor }}@users.noreply.github.com
name:
description: The committer's name
description: Committer's username
required: true
default: ${{ github.actor }}
commit_message:
description: The commit message
description: Commit message
required: true
default: Automatically updated using GitHub Actions
default: Automatically updated using Push and Commit action
target_branch:
description: The branch to push the changes back to
description: Branch to push the changes back to
required: true
default: ${{ github.ref }}
files:
description: The files to add separated by space
description: Files to add separated by space
required: true
default: .
remote_repository:
description: The repository to push the code to
description: Repository to push the code to
required: true
default: origin
access_token:
description: The token used to push the code
description: Token used to push the code
required: true
default: ${{ github.token }}
force: