From 9681dc761acddfcdf2e574e0ac6c2130cba745e5 Mon Sep 17 00:00:00 2001 From: Aaron Zielstorff Date: Fri, 12 Jan 2024 10:49:49 +0100 Subject: [PATCH] fixed an issue with the placement of the secrets definition --- otterdog/eclipse-basyx.jsonnet | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/otterdog/eclipse-basyx.jsonnet b/otterdog/eclipse-basyx.jsonnet index 482f850..e58c7ee 100644 --- a/otterdog/eclipse-basyx.jsonnet +++ b/otterdog/eclipse-basyx.jsonnet @@ -313,7 +313,7 @@ orgs.newOrg('eclipse-basyx') { workflows+: { enabled: false, }, - webhooks+: [ + webhooks: [ orgs.newRepoWebhook('https://readthedocs.org/api/v2/webhook/basyx-wiki/253837/') { content_type: "json", events+: [ @@ -323,11 +323,11 @@ orgs.newOrg('eclipse-basyx') { "push" ], secret: "********", - secrets: [ - orgs.newRepoSecret('READTHEDOCS_WIKI_TOKEN') { - value: "********", - }, - ], + }, + ], + secrets: [ + orgs.newRepoSecret('READTHEDOCS_WIKI_TOKEN') { + value: "********", }, ], },