This is an automated email from the ASF dual-hosted git repository.

lynwee pushed a commit to branch lw-cp0223
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git

commit 9e82bef1e4b91466423f1d90aa9121a41fe20741
Author: Lynwee Hou <[email protected]>
AuthorDate: Fri Feb 23 19:40:14 2024 +0800

    fix(azuredevops): fix updated_date in cicd_scopes
---
 backend/python/plugins/azuredevops/azuredevops/main.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/backend/python/plugins/azuredevops/azuredevops/main.py 
b/backend/python/plugins/azuredevops/azuredevops/main.py
index d8b7a4acb..966aca974 100644
--- a/backend/python/plugins/azuredevops/azuredevops/main.py
+++ b/backend/python/plugins/azuredevops/azuredevops/main.py
@@ -56,7 +56,8 @@ class AzureDevOpsPlugin(Plugin):
         yield CicdScope(
             name=git_repo.name,
             description=git_repo.name,
-            url=git_repo.url
+            url=git_repo.url,
+            updatedDate=git_repo.updated_date,
         )
 
     def remote_scope_groups(self, connection) -> list[RemoteScopeGroup]:

Reply via email to