Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/actions-go/push
https://github.com/actions-go/push
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/actions-go/push
- Owner: actions-go
- License: mit
- Created: 2020-01-21T23:50:10.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T18:03:42.000Z (over 1 year ago)
- Last Synced: 2024-11-04T14:42:09.571Z (11 days ago)
- Language: Go
- Size: 111 MB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Push changes on your repository
Use this action to push changes done by other actions to the upstream repository
## Inputs
### `author-email`
The email that will appear in commits when changes needs to be committed.
### `author-name`
The name that will appear in commits when changes needs to be committed.
### `create-commit`
Instructs to create a commit with changed files.
### `commit-message`
The commit message used when changes needs to be committed.
### `ref`
The name of the local reference to push.
### `remote`
The name of the remote on which to push the changes. Defaults to the tracked remote
### `remote-ref`
The name of the remote reference to pushto. Defaults to the tracked remote branch.
### `fail-if-empty`
Fail the action in case there is nothing to do.
## Outputs
### `empty`
TRUE when the action did not perform anything.
## Example usage
```yaml
uses: actions-go/push@master
with:
commit-message: '[Auto] update pre-puilt dist packages'
remote: origin
```