From 12af28cb1351b8ea67ecc521eb616d6de124bd36 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 5 Feb 2022 11:42:18 +0100 Subject: [PATCH] bundles/pretalx: specifying a revision is now mandatory --- bundles/pretalx/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/pretalx/items.py b/bundles/pretalx/items.py index 0a69ace..e5b65d1 100644 --- a/bundles/pretalx/items.py +++ b/bundles/pretalx/items.py @@ -187,7 +187,7 @@ for plugin_name, plugin_config in node.metadata.get('pretalx/plugins', {}).items git_deploy[f'/opt/pretalx/plugin_{plugin_name}'] = { 'repo': plugin_config['repo'], - 'rev': plugin_config.get('rev', 'master'), + 'rev': plugin_config['rev'], 'triggers': { f'action:pretalx_install_plugin_{plugin_name}', },