Skip to content

Commit

Permalink
feat: change default branch for GHA workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Feb 11, 2025
1 parent 68b8c23 commit fcdea8c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/plone/meta/config_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit fcdea8c

Please sign in to comment.