Skip to content

Commit 862228a

Browse files
authored
Merge pull request #1611 from CMSgov/release/vv2026.02.27.01
Deploy Release version v2026.02.27.01 to Prod
2 parents a1edbf3 + 0157f74 commit 862228a

14 files changed

Lines changed: 167 additions & 100 deletions

File tree

.github/workflows/publish-release.yml

Lines changed: 39 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -37,31 +37,45 @@ jobs:
3737
echo "Published release ${{ steps.get_release.outputs.tag_name }} as latest"
3838
env:
3939
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40+
backfill:
41+
name: Backfill master to develop branch
42+
runs-on: ubuntu-latest
43+
steps:
44+
- name: Check params
45+
run: |
46+
echo "head.ref = ${{github.event.pull_request.head.ref}}"
47+
echo "base.ref = ${{github.event.pull_request.base.ref}}"
48+
49+
- uses: actions/checkout@v4
50+
with:
51+
ref: master
52+
token: ${{ secrets.ACTIONS_NICHOLAS_PAT }}
4053

41-
- name: Create backfill PR to develop
54+
- name: Create backfill branch
55+
run: git checkout -b backfill/master;
56+
57+
# In order to make a commit, we need to initialize a user.
58+
- name: Initialize mandatory git config
4259
run: |
43-
# Check if a PR already exists
44-
EXISTING_PR=$(gh pr list --base develop --head master --json number --jq '.[0].number' || echo "")
45-
46-
if [ -n "$EXISTING_PR" ]; then
47-
echo "PR #${EXISTING_PR} already exists for master -> develop"
48-
exit 0
49-
fi
50-
51-
# Create the backfill PR
52-
gh pr create \
53-
--base develop \
54-
--head master \
55-
--title "Backfill master into develop" \
56-
--body "This PR backfills changes from master into develop after production deployment.
57-
58-
## Changes
59-
This includes all changes that were merged to master.
60-
61-
## Notes
62-
- Review for any conflicts
63-
- Merge after verifying all changes are appropriate for develop branch"
64-
65-
echo "Created backfill PR from master to develop"
60+
git config user.name "GitHub actions"
61+
git config user.email noreply@github.com
62+
63+
- name: Push backfill branch
6664
env:
67-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
65+
GITHUB_TOKEN: ${{ secrets.ACTIONS_NICHOLAS_PAT }}
66+
run: |
67+
git push origin backfill/master
68+
69+
- name: Create backfill pull request to develop branch
70+
uses: thomaseizinger/create-pull-request@1.4.0
71+
with:
72+
github_token: ${{ secrets.ACTIONS_NICHOLAS_PAT }}
73+
head: backfill/master
74+
base: develop
75+
draft: true
76+
title: Backfill ${{ github.event.pull_request.base.ref }} branch to develop branch
77+
body: |
78+
Hi @${{ github.actor }}!
79+
80+
This PR was created in response to a trigger of the release workflow here: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}.
81+
Following a release, this is a backfill from the main branch to the develop branch.

acceptance-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>acceptance-tests</artifactId>
55
<groupId>gov.cms.qpp.conversion</groupId>
6-
<version>2026.02.17.01-RELEASE</version>
6+
<version>2026.02.27.01-RELEASE</version>
77
<name>conversion-tests</name>
88
<packaging>jar</packaging>
99
<properties>

commandline/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>qpp-conversion-tool-parent</artifactId>
9-
<version>2026.02.17.01-RELEASE</version>
9+
<version>2026.02.27.01-RELEASE</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>qpp-conversion-tool-parent</artifactId>
9-
<version>2026.02.17.01-RELEASE</version>
9+
<version>2026.02.27.01-RELEASE</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

converter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>qpp-conversion-tool-parent</artifactId>
9-
<version>2026.02.17.01-RELEASE</version>
9+
<version>2026.02.27.01-RELEASE</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

@@ -185,7 +185,7 @@
185185
<dependency>
186186
<groupId>gov.cms.qpp.conversion</groupId>
187187
<artifactId>commons</artifactId>
188-
<version>2026.02.17.01-RELEASE</version>
188+
<version>2026.02.27.01-RELEASE</version>
189189
<scope>compile</scope>
190190
</dependency>
191191

generate-race-cpcplus/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>generateRaceCpcPlus</artifactId>
9-
<version>2026.02.17.01-RELEASE</version>
9+
<version>2026.02.27.01-RELEASE</version>
1010
<name>generate-race-cpcplus</name>
1111
<packaging>jar</packaging>
1212

generate/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>qpp-conversion-tool-parent</artifactId>
77
<groupId>gov.cms.qpp.conversion</groupId>
8-
<version>2026.02.17.01-RELEASE</version>
8+
<version>2026.02.27.01-RELEASE</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>gov.cms.qpp.conversion</groupId>
77
<artifactId>qpp-conversion-tool-parent</artifactId>
88
<packaging>pom</packaging>
9-
<version>2026.02.17.01-RELEASE</version>
9+
<version>2026.02.27.01-RELEASE</version>
1010
<name>QPP Conversion Tool</name>
1111

1212
<properties>
@@ -469,13 +469,13 @@
469469
<dependency>
470470
<groupId>ch.qos.logback</groupId>
471471
<artifactId>logback-classic</artifactId>
472-
<version>1.5.13</version>
472+
<version>1.5.25</version>
473473
</dependency>
474474

475475
<dependency>
476476
<groupId>ch.qos.logback</groupId>
477477
<artifactId>logback-core</artifactId>
478-
<version>1.5.13</version>
478+
<version>1.5.25</version>
479479
</dependency>
480480

481481
<dependency>

qrda3-update-measures/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>gov.cms.qpp.conversion</groupId>
66
<artifactId>qpp-update-measures</artifactId>
7-
<version>2026.02.17.01-RELEASE</version>
7+
<version>2026.02.27.01-RELEASE</version>
88
<name>qrda3-update-measures</name>
99
<packaging>jar</packaging>
1010

rest-api/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>gov.cms.qpp.conversion</groupId>
2121
<artifactId>qpp-conversion-tool-parent</artifactId>
22-
<version>2026.02.17.01-RELEASE</version>
22+
<version>2026.02.27.01-RELEASE</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

@@ -226,17 +226,17 @@
226226
<dependency>
227227
<groupId>org.apache.tomcat.embed</groupId>
228228
<artifactId>tomcat-embed-core</artifactId>
229-
<version>10.1.45</version>
229+
<version>10.1.52</version>
230230
</dependency>
231231
<dependency>
232232
<groupId>org.apache.tomcat.embed</groupId>
233233
<artifactId>tomcat-embed-el</artifactId>
234-
<version>10.1.45</version>
234+
<version>10.1.52</version>
235235
</dependency>
236236
<dependency>
237237
<groupId>org.apache.tomcat.embed</groupId>
238238
<artifactId>tomcat-embed-websocket</artifactId>
239-
<version>10.1.45</version>
239+
<version>10.1.52</version>
240240
</dependency>
241241

242242
<dependency>

0 commit comments

Comments
 (0)