diff --git a/README.md b/README.md index caec196..dd7ae51 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ 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 | | Commit message +**commit_message** | NO | `Commit performed using Push and Commit action` | Commit message **target_branch** | NO | `${{ github.ref }}` | Branch to push the changes back **files** | NO | `.` | Files to add separated by space
_e.g: `file1 file2 directory1 directory2/file3`_ **remote_repository** | NO | `origin` | Repository to push the code diff --git a/action.yml b/action.yml index 9eeccb0..cb3107c 100644 --- a/action.yml +++ b/action.yml @@ -14,7 +14,7 @@ inputs: commit_message: description: Commit message required: true - default: Automatically updated using Push and Commit action + default: Commit performed using Push and Commit action target_branch: description: Branch to push the changes back to required: true