Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.2 #10

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d

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

#### [1.0.2](https://github.com/rdkcentral/docker-rdk-ci/compare/1.0.1...1.0.2)

- Fix 400 error response from data service [`#9`](https://github.com/rdkcentral/docker-rdk-ci/pull/9)

#### [1.0.1](https://github.com/rdkcentral/docker-rdk-ci/compare/1.0.0...1.0.1)

> 13 September 2024

- Add nodejs to docker-rdk-ci container [`#6`](https://github.com/rdkcentral/docker-rdk-ci/pull/6)
- RDKE-61: Use common GH context variables [`#4`](https://github.com/rdkcentral/docker-rdk-ci/pull/4)
- Changelog updates for 1.0.1 release [`449b10c`](https://github.com/rdkcentral/docker-rdk-ci/commit/449b10c9cc20ee7a99470360d53ed9cb4702902b)

#### 1.0.0

Expand Down
2 changes: 2 additions & 0 deletions gtest-json-result-push.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def json_string(xml_file_path, git_folder_path):

#The below command will work on the github action container to get the component name
component_name=os.popen('git remote -v | grep fetch | cut -d "/" -f5 | cut -d " " -f1').read()
execution_link="https://github.com/rdkcentral"
developer=os.popen('git log --pretty="format:%an" -n 1').read()
jira_ticket=os.popen('git log --pretty="format:%s" -n 1 | cut -d ":" -f1').read()

Expand All @@ -53,6 +54,7 @@ def json_string(xml_file_path, git_folder_path):
json_root = {
"commit_id": commit_id.strip(),
"component_name": component_name.strip(),
"execution_link": execution_link.strip(),
"developer": developer.strip(),
"jira_ticket": jira_ticket.strip()
}
Expand Down
Loading