generated from buildkite-plugins/template-buildkite-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.yml
45 lines (44 loc) · 1.33 KB
/
plugin.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Custom-checkout-buildkite-plugin
description: A refined plugin for handling repository checkouts in Buildkite
author: https://github.com/buildkite
version: "1.0.0"
requirements: []
configuration:
properties:
skip_checkout:
type: boolean
default: false
description: "If true, skips the checkout process."
delete_checkout:
type: boolean
default: false
description: "If true, deletes the checkout directory after the build."
checkout_path:
type: string
description: "Custom path for checking out repositories."
interpolate_checkout_path:
type: string
description: "Checkout path with environment variables to interpolate."
repos:
type: array
description: "List of repositories to checkout."
items:
type: object
properties:
url:
type: string
description: "Repository Git URL."
ref:
type: string
description: "Branch, tag, or commit to checkout."
ssh_key_path:
type: string
description: "Path to SSH key for repository access."
clone_flags:
type: array
items:
type: string
description: "Additional flags for git clone."
required:
- url
additionalProperties: false