Skip to content

A GitHub Action to run arbitrary git commands

License

Notifications You must be signed in to change notification settings

KaimingWan/git-actions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 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/[email protected]"
  args = "git status"
}

About

A GitHub Action to run arbitrary git commands

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 50.9%
  • Shell 49.1%