Skip to content

Commit 0873f64

Browse files
authored
Merge pull request #1202 from jobselko/support_3_19
Add 3.19 to supported branches
2 parents 34941d7 + 45d4a77 commit 0873f64

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.github/workflows/update_ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,37 @@ jobs:
165165
env:
166166
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
167167
continue-on-error: true
168+
- uses: "actions/checkout@v6"
169+
with:
170+
fetch-depth: 0
171+
path: "pulp_python"
172+
ref: "3.19"
173+
174+
- name: "Run update"
175+
working-directory: "pulp_python"
176+
run: |
177+
../plugin_template/scripts/update_ci.sh --release
178+
179+
- name: "Create Pull Request for CI files"
180+
uses: "peter-evans/create-pull-request@v8"
181+
id: "create_pr_3_19"
182+
with:
183+
token: "${{ secrets.RELEASE_TOKEN }}"
184+
path: "pulp_python"
185+
committer: "pulpbot <pulp-infra@redhat.com>"
186+
author: "pulpbot <pulp-infra@redhat.com>"
187+
title: "Update CI files for branch 3.19"
188+
branch: "update-ci/3.19"
189+
base: "3.19"
190+
delete-branch: true
191+
- name: "Mark PR automerge"
192+
working-directory: "pulp_python"
193+
run: |
194+
gh pr merge --rebase --auto "${{ steps.create_pr_3_19.outputs.pull-request-number }}"
195+
if: "steps.create_pr_3_19.outputs.pull-request-number"
196+
env:
197+
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
198+
continue-on-error: true
168199
- uses: "actions/checkout@v6"
169200
with:
170201
fetch-depth: 0

template_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ supported_release_branches:
9494
- "3.11"
9595
- "3.12"
9696
- "3.13"
97+
- "3.19"
9798
- "3.27"
9899
sync_ci: true
99100
test_azure: true

0 commit comments

Comments
 (0)