From fcdea8c61167cc70506ab11664718835a54af9e1 Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Tue, 11 Feb 2025 11:32:08 +0100 Subject: [PATCH] feat: change default branch for GHA workflows --- src/plone/meta/config_package.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/plone/meta/config_package.py b/src/plone/meta/config_package.py index 5ebd34b..7e443a5 100755 --- a/src/plone/meta/config_package.py +++ b/src/plone/meta/config_package.py @@ -36,7 +36,14 @@ DOCKER_IMAGE = "python:3.11-bullseye" -GHA_DEFAULT_REF = "main" +# Rather than pointing configured repositories to `plone.meta`'s `main` branch +# to get their GHA workflows, point them to an ever evolving branch. +# +# This has a few benefits: +# - configured repositories do not point to outdated GHA workflows +# - `plone.meta` can do breaking changes on GHA workflows and roll them gradually +GHA_DEFAULT_REF = "2.x" + GHA_DEFAULT_JOBS = [ "qa", "test",