git Actions
ActionsTags
(2)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"
}
git Actions is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.