From 45d4a77d2859b88e05dd60128a9513e1cb889ffa Mon Sep 17 00:00:00 2001 From: Jitka Halova Date: Mon, 20 Apr 2026 16:02:01 +0200 Subject: [PATCH] Add 3.19 to supported branches --- .github/workflows/update_ci.yml | 31 +++++++++++++++++++++++++++++++ template_config.yml | 1 + 2 files changed, 32 insertions(+) diff --git a/.github/workflows/update_ci.yml b/.github/workflows/update_ci.yml index 6a3e2db7..f9bc9b8d 100644 --- a/.github/workflows/update_ci.yml +++ b/.github/workflows/update_ci.yml @@ -165,6 +165,37 @@ jobs: env: GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" continue-on-error: true + - uses: "actions/checkout@v6" + with: + fetch-depth: 0 + path: "pulp_python" + ref: "3.19" + + - name: "Run update" + working-directory: "pulp_python" + run: | + ../plugin_template/scripts/update_ci.sh --release + + - name: "Create Pull Request for CI files" + uses: "peter-evans/create-pull-request@v8" + id: "create_pr_3_19" + with: + token: "${{ secrets.RELEASE_TOKEN }}" + path: "pulp_python" + committer: "pulpbot " + author: "pulpbot " + title: "Update CI files for branch 3.19" + branch: "update-ci/3.19" + base: "3.19" + delete-branch: true + - name: "Mark PR automerge" + working-directory: "pulp_python" + run: | + gh pr merge --rebase --auto "${{ steps.create_pr_3_19.outputs.pull-request-number }}" + if: "steps.create_pr_3_19.outputs.pull-request-number" + env: + GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" + continue-on-error: true - uses: "actions/checkout@v6" with: fetch-depth: 0 diff --git a/template_config.yml b/template_config.yml index 2b0408f3..3ba34765 100644 --- a/template_config.yml +++ b/template_config.yml @@ -94,6 +94,7 @@ supported_release_branches: - "3.11" - "3.12" - "3.13" + - "3.19" - "3.27" sync_ci: true test_azure: true