Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
mic

GitHub Action

git Actions

v0.0.2

git Actions

mic

git Actions

Run git commands

Installation

Copy and paste the following snippet into your .yml file.

              

- name: git Actions

uses: srt32/git-actions@v0.0.2

Learn more about this action in srt32/git-actions

Choose a version

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@master"
  args = "git status"
}