diff --git a/CHANGELOG.md b/CHANGELOG.md index a387dd7..ff4da08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/gtest-json-result-push.py b/gtest-json-result-push.py index 1f25b88..42ee250 100755 --- a/gtest-json-result-push.py +++ b/gtest-json-result-push.py @@ -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() @@ -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() }