https://github.com/srt32/git-actions
A GitHub Action to run arbitrary git commands
https://github.com/srt32/git-actions
action git github-action github-actions
Last synced: 5 months ago
JSON representation
A GitHub Action to run arbitrary git commands
- Host: GitHub
- URL: https://github.com/srt32/git-actions
- Owner: srt32
- License: mit
- Created: 2019-02-01T23:22:22.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-11T20:07:53.000Z (over 5 years ago)
- Last Synced: 2025-04-12T06:44:04.521Z (7 months ago)
- Topics: action, git, github-action, github-actions
- Language: Dockerfile
- Homepage:
- Size: 6.84 KB
- Stars: 72
- Watchers: 8
- Forks: 39
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Action for running git commands
You can run any `git` command you need. For example, you could run `git status` like this.
```hcl
workflow "My build" {
resolves = [
"git command",
]
on = "push"
}
action "git command" {
uses = "srt32/git-actions@v0.0.3"
args = "git status"
}
```