Skip to content

A GitHub Action to run arbitrary git commands

License

Notifications You must be signed in to change notification settings

toksdotdev-forks/git-actions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Action for running git commands

You can run any git command you need. For example, you could run git status like this.

workflow "My build" {
  resolves = [
    "git command",
  ]
  on = "push"
}

action "git command" {
  uses = "srt32/git-actions@v0.0.3"
  args = "git status"
}

About

A GitHub Action to run arbitrary git commands

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 67.2%
  • Shell 32.8%