diff --git a/README.md b/README.md
index c563ce8..867d49d 100644
--- a/README.md
+++ b/README.md
@@ -59,10 +59,10 @@ Field | Mandatory | Default Value | Observation
------------ | ------------ | ------------- | -------------
**email** | NO | `${{ github.actor }}@users.noreply.github.com` | Github user email
_e.g: `octocat@github.com`_
**name** | NO | `${{ github.actor }}` | Github username
_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
_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
_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
diff --git a/action.yml b/action.yml
index a1fcfad..9eeccb0 100644
--- a/action.yml
+++ b/action.yml
@@ -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: