Skip to content

Commit

Permalink
Merge pull request #916 from ergebnis/feature/schema
Browse files Browse the repository at this point in the history
Enhancement: Update `schema.json`
  • Loading branch information
localheinz authored Apr 20, 2022
2 parents 2b98828 + 19dd614 commit 4bcb390
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

For a full diff see [`2.25.1...main`][2.25.1...main].

### Changed

- Updated `schema.json` ([#916]), by [@ergebnis-bot]

## [`2.25.1`][2.25.1]

For a full diff see [`2.25.0...2.25.1`][2.25.0....2.25.1].
Expand Down
21 changes: 21 additions & 0 deletions resource/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,27 @@
"type": "string"
}
},
"bitbucket-oauth": {
"type": "object",
"description": "An object of domain name => {\"consumer-key\": \"...\", \"consumer-secret\": \"...\"}.",
"additionalProperties": {
"type": "object",
"required": [
"consumer-key",
"consumer-secret"
],
"properties": {
"consumer-key": {
"type": "string",
"description": "The consumer-key used for OAuth authentication"
},
"consumer-secret": {
"type": "string",
"description": "The consumer-secret used for OAuth authentication"
}
}
}
},
"use-github-api": {
"type": "boolean",
"description": "Defaults to true. If set to false, globally disables the use of the GitHub API for all GitHub repositories and clones the repository as it would for any other repository."
Expand Down

0 comments on commit 4bcb390

Please sign in to comment.