From f80eaa3d7359287c1a827084b3da6fa3aa389b99 Mon Sep 17 00:00:00 2001 From: ergebnis-bot Date: Sat, 2 Apr 2022 09:06:34 +0000 Subject: [PATCH 1/2] Enhancement: Update schema.json --- resource/schema.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/resource/schema.json b/resource/schema.json index b5dd533a..2636a4eb 100644 --- a/resource/schema.json +++ b/resource/schema.json @@ -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." From 19dd61434a9b9168c37c7d606c15a2173146a36a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 20 Apr 2022 09:42:35 +0200 Subject: [PATCH 2/2] Fix: Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e238d52..6a8ff6cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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].