An open API service indexing awesome lists of open source software.

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

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"
}
```