---
"$schema": "http://json-schema.org/schema#"
id: "boxhatter://server.yaml#"
type: object
required:
- repos
properties:
env:
type: object
description: |
environment variables avaliable to all repositories
(keys represent variable names)
patternProperties:
".+":
type: string
description: environment variable value
repos:
type: object
description: git repositories (keys represent repository names)
patternProperties:
".+":
type: object
required:
- url
properties:
url:
type: string
description: remote repository location
refs:
type: array
description: git references used for commit listing
items:
type: string
default:
- "refs/heads/*"
action:
type: string
decription: action file path inside repository
default: ".boxhatter.yaml"
min_sync_delay:
type:
- number
- "null"
description: |
minimum time delay (in seconds) between
two consecutive remote ref synchronizations
(null disables synchronization limiting)
default: 60
max_sync_delay:
type:
- number
- "null"
description: |
maximum time delay (in seconds) between
two consecutive remote ref synchronizations
(null disables periodic synchronization)
default: null
env:
type: object
description: |
environment variables avaliable to this repository
(keys represent variable names)
patternProperties:
".+":
type: string
description: environment variable value
...