Skip to content

Commit 5d7ff12

Browse files
committed
Merge branch 'release/1.5.2'
2 parents 41d6eab + 1beceac commit 5d7ff12

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/component-release.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,24 @@ permissions:
55

66
on:
77
pull_request:
8-
types: [closed]
8+
types: [opened, edited, ready_for_review, closed]
99
branches:
1010
- develop
1111

1212
jobs:
13+
validate-version:
14+
if: ${{ github.event.action == 'opened' || github.event.action == 'edited' || github.event.action == 'ready_for_review' }}
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Validate PR description for version field
18+
env:
19+
PR_DESC: ${{ github.event.pull_request.body }}
20+
run: |
21+
if ! echo "$PR_DESC" | grep -qiE 'version[[:space:]]*:[[:space:]]*(major|minor|patch)'; then
22+
echo "ERROR: PR description must include a version field in the format 'version: major|minor|patch' (case-insensitive). Example: version: minor"
23+
exit 1
24+
fi
25+
echo "Validation passed: version field found."
1326
release:
1427
if: github.event.pull_request.merged == true
1528
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.5.2](https://github.com/rdkcentral/entservices-softwareupdate/compare/1.5.1...1.5.2)
8+
9+
- RDKEMW-10094: Update component-release.yml [`#167`](https://github.com/rdkcentral/entservices-softwareupdate/pull/167)
10+
- Merge tag '1.5.1' into develop [`91f72f8`](https://github.com/rdkcentral/entservices-softwareupdate/commit/91f72f87b16e65f852524563d339057d9eb94bae)
11+
712
#### [1.5.1](https://github.com/rdkcentral/entservices-softwareupdate/compare/1.5.0...1.5.1)
813

14+
> 6 November 2025
15+
916
- RDK-59287: Add logic to support Periodic App Maintenance [`#165`](https://github.com/rdkcentral/entservices-softwareupdate/pull/165)
17+
- 1.5.1 release changelog updates [`f627d5d`](https://github.com/rdkcentral/entservices-softwareupdate/commit/f627d5d2ac616130b7464607b01424c708bad4d9)
1018
- Merge tag '1.5.0' into develop [`ec46eeb`](https://github.com/rdkcentral/entservices-softwareupdate/commit/ec46eebdbab80468e4542e5c5c906262adc911c7)
1119

1220
#### [1.5.0](https://github.com/rdkcentral/entservices-softwareupdate/compare/1.4.9...1.5.0)

0 commit comments

Comments
 (0)