All Projects → srt32 → git-actions

srt32 / git-actions

Licence: MIT License
A GitHub Action to run arbitrary git commands

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to git-actions

ssh2actions
Connect to GitHub Actions VM via SSH for interactive debugging
Stars: ✭ 62 (-13.89%)
Mutual labels:  action, github-actions, github-action
assign-one-project-github-action
Automatically add an issue or pull request to specific GitHub Project(s) when you create and/or label them.
Stars: ✭ 140 (+94.44%)
Mutual labels:  action, github-actions, github-action
hugo-action
Commands to help with building Hugo based static sites
Stars: ✭ 65 (-9.72%)
Mutual labels:  action, github-actions, github-action
action-sync-node-meta
GitHub Action that syncs package.json with the repository metadata.
Stars: ✭ 25 (-65.28%)
Mutual labels:  action, github-actions, github-action
github-run-tests-action
mabl Github Actions implementation
Stars: ✭ 39 (-45.83%)
Mutual labels:  action, github-actions, github-action
setup-jdk
(DEPRECATED) Set up your GitHub Actions workflow with a specific version of AdoptOpenJDK
Stars: ✭ 32 (-55.56%)
Mutual labels:  action, github-actions, github-action
setup-bats
GitHub Action to setup BATS testing framework
Stars: ✭ 25 (-65.28%)
Mutual labels:  action, github-actions, github-action
clojure-dependency-update-action
A simple GitHub Actions job to create Pull Requests for outdated dependencies in clojure projects
Stars: ✭ 37 (-48.61%)
Mutual labels:  action, github-actions, github-action
overview
Automate your workflows with GitHub actions for MATLAB.
Stars: ✭ 40 (-44.44%)
Mutual labels:  github-actions, github-action
jest-github-action
Jest action adding checks with annotations to your pull requests and coverage table as comments
Stars: ✭ 134 (+86.11%)
Mutual labels:  action, github-actions
action-ssh
GitHub Action for executing SSH commands on remote servers
Stars: ✭ 60 (-16.67%)
Mutual labels:  github-actions, github-action
lychee-action
Github action to check for broken links in Markdown, HTML, and text files using lychee, a fast link checker written in Rust.
Stars: ✭ 89 (+23.61%)
Mutual labels:  action, github-actions
nrwl-nx-action
A GitHub Action to wrap Nrwl Nx commands in your workflows.
Stars: ✭ 163 (+126.39%)
Mutual labels:  github-actions, github-action
actions
Collection of repetitive GitHub Actions
Stars: ✭ 12 (-83.33%)
Mutual labels:  action, github-actions
rubocop-linter-action
Rubocop Linter Action: A GitHub Action to run Rubocop against your code!
Stars: ✭ 86 (+19.44%)
Mutual labels:  action, github-actions
bump-everywhere
🚀 Automate versioning, changelog creation, README updates and GitHub releases using GitHub Actions,npm, docker or bash.
Stars: ✭ 24 (-66.67%)
Mutual labels:  github-actions, github-action
colab-badge-action
GitHub Action that generates "Open In Colab" Badges for you
Stars: ✭ 15 (-79.17%)
Mutual labels:  action, github-actions
github-env-vars-action
🚀 GitHub Action for Environment Variables
Stars: ✭ 129 (+79.17%)
Mutual labels:  github-actions, github-action
vs-shell
GitHub action to set up the Visual Studio shell environment
Stars: ✭ 36 (-50%)
Mutual labels:  action, github-actions
misspell-fixer-action
📝Automatically fixes typos and mistakes in your source code and docs!
Stars: ✭ 123 (+70.83%)
Mutual labels:  github-actions, github-action

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"
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].