From 4c8d4dc8b3b70543071c6ee74995a081d7fdfad2 Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sat, 29 Jan 2022 09:51:35 +0100 Subject: [PATCH] New configuration options: aliases and secret --- base-config.yaml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/base-config.yaml b/base-config.yaml index 5cedd97..96c03f6 100644 --- a/base-config.yaml +++ b/base-config.yaml @@ -6,9 +6,31 @@ api_url: https://api.opensuse.org instance_url: https://build.opensuse.org # Build Service username username: changeme -# Build Service password +# Used to encrypt the password. Set it to a random string +secret: changeme +# Build Service password - will be encrypted on first run password: changeme # Build service access token with the "rebuild" capability rebuild_token: changeme # Build service access token with the "runservices" capability trigger_token: changeme +# Aliases for repositories +repo_aliases: + kua_failed: + project: "KDE:Unstable:Applications" + package: "all" + repository: "KDE_Unstable_Frameworks_openSUSE_Factory" + state: "failed" + arch: "all" + kuf_failed: + project: "KDE:Unstable:Frameworks" + package: "all" + repository: "openSUSE_Factory" + state: "failed" + arch: "all" + kue_failed: + project: "KDE:Unstable:Extra" + package: "all" + repository: "KDE_Unstable_Frameworks_openSUSE_Factory" + state: "failed" + arch: "all"