diff --git a/README.md b/README.md new file mode 100644 index 0000000..2fec9cd --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# run-without-clone-buildkite-plugin + +> Buildkite plugin to skip git clone before running a command + +## Usage + +```yaml +steps: + - command: 'echo hi' + plugins: + - 'uber-workflow/run-without-clone': +``` diff --git a/hooks/checkout b/hooks/checkout new file mode 100755 index 0000000..6d15016 --- /dev/null +++ b/hooks/checkout @@ -0,0 +1,3 @@ +#!/bin/bash + +echo "[Run Without Clone Plugin] - Skipping git checkout" diff --git a/plugin.yml b/plugin.yml new file mode 100644 index 0000000..f340689 --- /dev/null +++ b/plugin.yml @@ -0,0 +1,3 @@ +name: Skip clone +description: Skips git clone before running command +author: https://github.com/uber-workflow