2018-07-08 05:12:43 +00:00
|
|
|
key: git
|
|
|
|
title: Git
|
2018-08-05 15:27:46 +00:00
|
|
|
description: Git is a version control system for tracking changes in computer files and coordinating work on those files among multiple people.
|
2018-07-08 05:12:43 +00:00
|
|
|
author: requarks.io
|
2018-08-05 15:27:46 +00:00
|
|
|
logo: https://static.requarks.io/logo/git-alt.svg
|
|
|
|
website: https://git-scm.com/
|
2019-02-03 22:08:06 +00:00
|
|
|
isAvailable: true
|
2019-02-02 21:59:00 +00:00
|
|
|
supportedModes:
|
|
|
|
- sync
|
|
|
|
- push
|
|
|
|
- pull
|
2019-02-03 22:08:06 +00:00
|
|
|
defaultMode: sync
|
2019-02-13 22:20:46 +00:00
|
|
|
schedule: PT5M
|
2018-07-08 05:12:43 +00:00
|
|
|
props:
|
|
|
|
authType:
|
|
|
|
type: String
|
|
|
|
default: 'ssh'
|
2018-07-30 02:23:33 +00:00
|
|
|
title: Authentication Type
|
|
|
|
hint: Use SSH for maximum security.
|
2018-07-08 05:12:43 +00:00
|
|
|
enum:
|
|
|
|
- 'basic'
|
|
|
|
- 'ssh'
|
2019-02-03 22:08:06 +00:00
|
|
|
order: 1
|
2018-07-30 02:23:33 +00:00
|
|
|
repoUrl:
|
|
|
|
type: String
|
|
|
|
title: Repository URI
|
|
|
|
hint: Git-compliant URI (e.g. git@github.com:org/repo.git for ssh, https://github.com/org/repo.git for basic)
|
2019-02-03 22:08:06 +00:00
|
|
|
order: 2
|
2018-07-08 05:12:43 +00:00
|
|
|
branch:
|
|
|
|
type: String
|
|
|
|
default: 'master'
|
2019-02-03 22:08:06 +00:00
|
|
|
order: 3
|
2018-07-08 05:12:43 +00:00
|
|
|
verifySSL:
|
|
|
|
type: Boolean
|
|
|
|
default: true
|
2018-07-30 02:23:33 +00:00
|
|
|
title: Verify SSL Certificate
|
|
|
|
hint: Some hosts requires SSL certificate checking to be disabled. Leave enabled for proper security.
|
2019-02-03 22:08:06 +00:00
|
|
|
order: 31
|
2018-07-30 02:23:33 +00:00
|
|
|
sshPrivateKeyPath:
|
|
|
|
type: String
|
|
|
|
title: SSH Private Key Path
|
|
|
|
hint: SSH Authentication Only - Absolute path to the key. The key must NOT be passphrase-protected.
|
2019-02-03 22:08:06 +00:00
|
|
|
order: 10
|
2018-07-30 02:23:33 +00:00
|
|
|
basicUsername:
|
|
|
|
type: String
|
|
|
|
title: Username
|
|
|
|
hint: Basic Authentication Only
|
2019-02-03 22:08:06 +00:00
|
|
|
order: 11
|
2018-07-30 02:23:33 +00:00
|
|
|
basicPassword:
|
|
|
|
type: String
|
|
|
|
title: Password / PAT
|
|
|
|
hint: Basic Authentication Only
|
2019-02-03 22:08:06 +00:00
|
|
|
order: 12
|
2019-02-03 07:48:30 +00:00
|
|
|
localRepoPath:
|
|
|
|
type: String
|
|
|
|
title: Local Repository Path
|
|
|
|
default: './data/repo'
|
|
|
|
hint: 'Path where the local git repository will be created.'
|
2019-02-03 22:08:06 +00:00
|
|
|
order: 30
|
2019-02-03 07:48:30 +00:00
|
|
|
defaultEmail:
|
|
|
|
type: String
|
|
|
|
title: Default Author Email
|
|
|
|
default: 'name@company.com'
|
|
|
|
hint: 'Used as fallback in case the author of the change is not present.'
|
2019-02-03 22:08:06 +00:00
|
|
|
order: 20
|
2019-02-03 07:48:30 +00:00
|
|
|
defaultName:
|
|
|
|
type: String
|
|
|
|
title: Default Author Name
|
|
|
|
default: 'John Smith'
|
|
|
|
hint: 'Used as fallback in case the author of the change is not present.'
|
2019-02-03 22:08:06 +00:00
|
|
|
order: 21
|