diff --git a/.github/workflows/pip-compile-dev.yml b/.github/workflows/pip-compile-dev.yml index 5416083d4f..9f3037931b 100644 --- a/.github/workflows/pip-compile-dev.yml +++ b/.github/workflows/pip-compile-dev.yml @@ -29,6 +29,14 @@ jobs: 'pip-compile(tag)' 'pip-compile(pip-compile)' python-versions: "3.11" + - base-branch: stable-2.19 + pr-branch: pip-compile/stable-2.19/dev + nox-args: >- + -e 'pip-compile(formatters)' + 'pip-compile(typing)' + 'pip-compile(static)' + 'pip-compile(spelling)' + python-versions: "3.11" - base-branch: stable-2.18 pr-branch: pip-compile/stable-2.18/dev nox-args: >- diff --git a/hacking/tagger/tag.py b/hacking/tagger/tag.py index a404fc4887..e062e31ba3 100755 --- a/hacking/tagger/tag.py +++ b/hacking/tagger/tag.py @@ -42,10 +42,10 @@ ROOT = HERE.parent.parent DEFAULT_ANSIBLE_CORE_CHECKOUT = ROOT.parent.joinpath("ansible") DEFAULT_REMOTE = "origin" DEFAULT_ACTIVE_BRANCHES: tuple[str, ...] = ( - "stable-2.15", "stable-2.16", "stable-2.17", "stable-2.18", + "stable-2.19", )