https://github.com/compono/monorepo-checkout-buildkite-plugin
A simple plugin to switch to a folder inside a mono repo
https://github.com/compono/monorepo-checkout-buildkite-plugin
Last synced: about 1 year ago
JSON representation
A simple plugin to switch to a folder inside a mono repo
- Host: GitHub
- URL: https://github.com/compono/monorepo-checkout-buildkite-plugin
- Owner: compono
- Created: 2021-11-16T07:18:49.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-16T07:32:45.000Z (over 4 years ago)
- Last Synced: 2025-01-25T12:27:57.958Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# monorepo-checkout-buildkite-plugin
## How to use?
So you have a monorepo with many projects (stored under folders). Let's see one example:
```
# you monorepo
projectA/
bin/command1
projectB/
projectC/
```
If you want to point `BUILDKITE_CHECKOUT_PATH` to a specific folder inside your repo, this
is the plugin to do that:
```yaml
steps:
- label: "Do something"
commands:
- ./bin/command1
plugins:
- https://github.com/runlevel5/monorepo-checkout-buildkite-plugin.git:
folder: "projectA"
```