├── .asf.yaml ├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── documentation.md │ ├── feature-request.yml │ ├── question.md │ └── refactor.md ├── actions │ └── auto-cherry-pick │ │ ├── action.yml │ │ └── cherry-pick.sh ├── pull_request_template.md └── workflows │ ├── NOTICE-year-check.yml │ ├── asf-header-check.yml │ ├── auto-cherry-pick.yml │ ├── build-builder.yml │ ├── build.yml │ ├── commit-msg.yml │ ├── config-ui.yml │ ├── go-checklist.json │ ├── go-checklist.yml.bak │ ├── golangci-lint.yml │ ├── grafana-dashboards-check.yml │ ├── migration-script-lint.yml │ ├── stale.yml │ ├── test-e2e.yml │ ├── test.yml │ └── yaml-lint.yml ├── .gitignore ├── .licenserc.yaml ├── DISCLAIMER ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── backend ├── .golangci-goheader.template ├── .golangci.yaml ├── DevelopmentManual.md ├── Dockerfile ├── Makefile ├── core │ ├── config │ │ ├── config.go │ │ ├── config_viper.go │ │ └── config_viper_test.go │ ├── context │ │ └── basic_res.go │ ├── dal │ │ └── dal.go │ ├── domain_tables_info_test.go │ ├── errors │ │ ├── converter.go │ │ ├── crdb_impl.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── map.go │ │ ├── message.go │ │ ├── types.go │ │ ├── util.go │ │ └── util_test.go │ ├── log │ │ └── logger.go │ ├── migration │ │ ├── linter │ │ │ └── main.go │ │ ├── migrator.go │ │ ├── migrator_test.go │ │ └── models.go │ ├── models │ │ ├── api_key.go │ │ ├── blueprint.go │ │ ├── collector_state.go │ │ ├── common │ │ │ ├── base.go │ │ │ ├── cst_time.go │ │ │ ├── cst_time_test.go │ │ │ ├── iso8601time.go │ │ │ ├── iso8601time_test.go │ │ │ ├── string_float64.go │ │ │ └── string_int64.go │ │ ├── domainlayer │ │ │ ├── README.md │ │ │ ├── code │ │ │ │ ├── commit.go │ │ │ │ ├── commit_parent.go │ │ │ │ ├── commits_diff.go │ │ │ │ ├── component.go │ │ │ │ ├── pull_request.go │ │ │ │ ├── pull_request_assignees.go │ │ │ │ ├── pull_request_comment.go │ │ │ │ ├── pull_request_commit.go │ │ │ │ ├── pull_request_labels.go │ │ │ │ ├── pull_request_reviewers.go │ │ │ │ ├── ref.go │ │ │ │ ├── refs_pr_cherry_pick.go │ │ │ │ ├── repo.go │ │ │ │ └── repo_commit.go │ │ │ ├── codequality │ │ │ │ ├── cq_file_metrics.go │ │ │ │ ├── cq_issue_code_blocks.go │ │ │ │ ├── cq_issues.go │ │ │ │ └── cq_projects.go │ │ │ ├── crossdomain │ │ │ │ ├── account.go │ │ │ │ ├── board_repo.go │ │ │ │ ├── issue_commit.go │ │ │ │ ├── issue_repo_commits.go │ │ │ │ ├── project_incident_deployment_relationship.go │ │ │ │ ├── project_mapping.go │ │ │ │ ├── project_pr_metric.go │ │ │ │ ├── pull_request_issue.go │ │ │ │ ├── refs_issues_diff.go │ │ │ │ ├── team.go │ │ │ │ ├── team_user.go │ │ │ │ ├── user.go │ │ │ │ └── user_account.go │ │ │ ├── devops │ │ │ │ ├── cicd_deployment.go │ │ │ │ ├── cicd_deployment_commit.go │ │ │ │ ├── cicd_pipeline.go │ │ │ │ ├── cicd_pipeline_commmit.go │ │ │ │ ├── cicd_release.go │ │ │ │ ├── cicd_scope.go │ │ │ │ ├── cicd_task.go │ │ │ │ └── common.go │ │ │ ├── didgen │ │ │ │ ├── domain_id_generator.go │ │ │ │ └── domain_id_generator_test.go │ │ │ ├── domaininfo │ │ │ │ └── domaininfo.go │ │ │ ├── domainlayer.go │ │ │ ├── qa │ │ │ │ ├── qa_api.go │ │ │ │ ├── qa_project.go │ │ │ │ ├── qa_test_case.go │ │ │ │ └── qa_test_case_execution.go │ │ │ └── ticket │ │ │ │ ├── board.go │ │ │ │ ├── board_issue.go │ │ │ │ ├── incident.go │ │ │ │ ├── incident_assginee.go │ │ │ │ ├── issue.go │ │ │ │ ├── issue_assignee.go │ │ │ │ ├── issue_changelog.go │ │ │ │ ├── issue_comment.go │ │ │ │ ├── issue_custom_array_fields.go │ │ │ │ ├── issue_label.go │ │ │ │ ├── issue_relationship.go │ │ │ │ ├── sprint.go │ │ │ │ └── worklog.go │ │ ├── dynamic_tabler.go │ │ ├── locking.go │ │ ├── migrationscripts │ │ │ ├── 20220406_add_frame_tables.go │ │ │ ├── 20220505_rename_pipeline_step_to_stage.go │ │ │ ├── 20220601_add_subtasks_to_task_table.go │ │ │ ├── 20220616_add_blueprint_mode.go │ │ │ ├── 20220622_rename_tasks_to_plan.go │ │ │ ├── 20220707_reset_domain_tables.go │ │ │ ├── 20220711_add_subtasks_table.go │ │ │ ├── 20220722_commitfile_component.go │ │ │ ├── 20220725_add_project_mapping_table.go │ │ │ ├── 20220727_remove_notes.go │ │ │ ├── 20220729_rename_columns_of_pull_request_issues.go │ │ │ ├── 20220801_add_nopkmodel_to_commit_parent.go │ │ │ ├── 20220818_add_cicd_tables.go │ │ │ ├── 20220826_rename_columns_of_pr_comment_issue_comment.go │ │ │ ├── 20220829_modify_tables_for_dora.go │ │ │ ├── 20220830_add_type_field_in_board.go │ │ │ ├── 20220903_encrypt_blueprint.go │ │ │ ├── 20220904_encrypt_pipeline.go │ │ │ ├── 20220905_modify_cicd_pipeline.go │ │ │ ├── 20220908_modify_cicd_tasks.go │ │ │ ├── 20220913_add_origin_value_for_pr.go │ │ │ ├── 20220913_add_raw_data_origin_to_board_repos.go │ │ │ ├── 20220913_fix_commitfile_id_toolong.go │ │ │ ├── 20220915_rename_pipeline_commits.go │ │ │ ├── 20220918_commit_line_change.go │ │ │ ├── 20220927_add_snapshot.go │ │ │ ├── 20220929_change_leadtimeminutes_to_int64.go │ │ │ ├── 20221101_add_collector_state.go │ │ │ ├── 20221107_add_skip_on_fail.go │ │ │ ├── 20221107_remove_cicd_pipeline_relation.go │ │ │ ├── 20221109_add_project_tables.go │ │ │ ├── 20221109_modify_commits_diffs.go │ │ │ ├── 20221109_rename_project_metrics.go │ │ │ ├── 20221111_add_project_pr_metric.go │ │ │ ├── 20221115_add_labels.go │ │ │ ├── 20221117_add_project_to_blueprint.go │ │ │ ├── 20221120_add_project_issue_metric.go │ │ │ ├── 20221125_add_collector_state.go │ │ │ ├── 20221201_add_enable_to_project_metric.go │ │ │ ├── 20221201_add_project_pr_metric.go │ │ │ ├── 20221207_add_cicd_scope_drop_builds_jobs.go │ │ │ ├── 20221215_add_original_project_to_issues.go │ │ │ ├── 20221221_add_error_name.go │ │ │ ├── 20221221_encrypt_task.go │ │ │ ├── 20221230_add_original_type_to_issue.go │ │ │ ├── 20230208_add_code_quality.go │ │ │ ├── 20230213_add_time_after_to_collector_state.go │ │ │ ├── 20230214_issue_storypoint_to_float.go │ │ │ ├── 20230222_add_commit_sha_index.go │ │ │ ├── 20230222_add_host_namespace_reponame.go │ │ │ ├── 20230223_remove_createddateafter_from_collector_state.go │ │ │ ├── 20230402_add_issue_assignee.go │ │ │ ├── 20230405_rename_tap_collector_state.go │ │ │ ├── 20230406_rename_cicd_pipeline_commits_repo_url.go │ │ │ ├── 20230416_rename_project_pr_metrict_deployment_id.go │ │ │ ├── 20230419_add_commit_authored_date_in_pr_commits.go │ │ │ ├── 20230426_add_cicd_deployment_commits.go │ │ │ ├── 20230508_add_original_status_to_pull_request.go │ │ │ ├── 20230511_add_calendar_months.go │ │ │ ├── 20230516_change_pull_request_id_type_in_prcomments.go │ │ │ ├── 20230516_rename_finished_commits_diffs.go │ │ │ ├── 20230517_add_updated_date_to_issue_comments.go │ │ │ ├── 20230725_add_api_key_tables.go │ │ │ ├── 20230728_tasks_use_json.go │ │ │ ├── 20230816_add_issue_relationship_table.go │ │ │ ├── 20230821_modify_cicd_pipelines_to_text.go │ │ │ ├── 20230822_drop_tap_state.go │ │ │ ├── 20230829_normalize_bp_settings.go │ │ │ ├── 20230831_add_cicd_deployments_table.go │ │ │ ├── 20230911_add_sync_policy.go │ │ │ ├── 20230921_add_issue_custom_array_fields.go │ │ │ ├── 20231103_remove_position_from_pull_request_comments.go │ │ │ ├── 20231115_change_duration_sec_to_float64.go │ │ │ ├── 20231116_add_original_status_and_result_to_devops_tables.go │ │ │ ├── 20231122_add_some_date_field_in_devops_tables.go │ │ │ ├── 20231127_add_commit_msg_to_cicd_deployment_commits.go │ │ │ ├── 20231128_add_queued_duration_sec_field_in_devops_tables.go │ │ │ ├── 20231205_modify_issue_original_type_length.go │ │ │ ├── 20231208_add_commit_msg_to_cicd_pipeline_commits.go │ │ │ ├── 20240115_modify_issue_leadtimeminutes_to_uint.go │ │ │ ├── 20240116_modify_fileds_sort.go │ │ │ ├── 20240117_add_urgency_to_issues.go │ │ │ ├── 20240124_modify_refs_id_length.go │ │ │ ├── 20240129_add_original_environment.go │ │ │ ├── 20240308_add_subtaskname_to_deployment.go │ │ │ ├── 20240318_add_devlake_store.go │ │ │ ├── 20240322_add_field_to_subtasks.go │ │ │ ├── 20240410_add_display_title_and_url_to_deployment.go │ │ │ ├── 20240424_add_subtask_states.go │ │ │ ├── 20240514_add_cicd_release.go │ │ │ ├── 20240515_add_commit_sha_to_cicd_release.go │ │ │ ├── 20240521_modify_cicd_deployment_commits_repo_url_length.go │ │ │ ├── 20240521_modify_cicd_pipeline_commits_repo_url_length.go │ │ │ ├── 20240523_update_issue_key_type_in_pull_request_issues.go │ │ │ ├── 20240523_update_plugin_option_in_project_metric_settings.go │ │ │ ├── 20240531_add_pr_assignees_and_reviewers.go │ │ │ ├── 20240603_add_pull_request_id_index_for_pr_comments_table.go │ │ │ ├── 20240603_add_pull_request_id_index_for_pr_commits_table.go │ │ │ ├── 20240607_modify_pr_assignees_and_reviewers_id.go │ │ │ ├── 20240621_init_incidents_and_incident_assignees.go │ │ │ ├── 20240621_rename_project_issue_metrics.go │ │ │ ├── 20240710_add_changes_to_pr.go │ │ │ ├── 20240710_add_merge_by_to_pr.go │ │ │ ├── 20240725_add_is_draft_to_pr.go │ │ │ ├── 20240731_add_datefields_to_project_pr_metrics.go │ │ │ ├── 20240731_add_table_scope_id_to_incidents.go │ │ │ ├── 20240801_add_assignee_id_to_incidents.go │ │ │ ├── 20240813_add_is_subtask_to_issue.go │ │ │ ├── 20240813_change_issue_component_type.go │ │ │ ├── 20240813_increase_project_key_length.go │ │ │ ├── 20240906_add_is_child_to_cicd_pipelines.go │ │ │ ├── 20240919_increase_cq_issue_component_length.go │ │ │ ├── 20241010_add_ca_issue_impacts.go │ │ │ ├── 20250303_add_due_date_to_issues.go │ │ │ ├── 20250421_create_qa_tables.go │ │ │ ├── 20250527_extend_field_size_for_cq.go │ │ │ ├── 20250710_issue_fix_version.go │ │ │ ├── archived │ │ │ │ ├── account.go │ │ │ │ ├── base.go │ │ │ │ ├── blueprint.go │ │ │ │ ├── board.go │ │ │ │ ├── cicd_deployment.go │ │ │ │ ├── cicd_scope.go │ │ │ │ ├── collector_state.go │ │ │ │ ├── commit.go │ │ │ │ ├── connection.go │ │ │ │ ├── cq_file_metrics.go │ │ │ │ ├── cq_issue_code_blocks.go │ │ │ │ ├── cq_issues.go │ │ │ │ ├── cq_projects.go │ │ │ │ ├── incident.go │ │ │ │ ├── incident_assignee.go │ │ │ │ ├── iso8601time.go │ │ │ │ ├── issue.go │ │ │ │ ├── issue_changelog.go │ │ │ │ ├── issue_custom_array_fields.go │ │ │ │ ├── issue_relationship.go │ │ │ │ ├── issue_repo_commits.go │ │ │ │ ├── note.go │ │ │ │ ├── notification.go │ │ │ │ ├── pipeline.go │ │ │ │ ├── project_issue_metric.go │ │ │ │ ├── project_mapping.go │ │ │ │ ├── project_pr_metric.go │ │ │ │ ├── pull_request.go │ │ │ │ ├── pull_request_assignees.go │ │ │ │ ├── pull_request_reviewers.go │ │ │ │ ├── ref.go │ │ │ │ ├── repo.go │ │ │ │ ├── sprint.go │ │ │ │ ├── task.go │ │ │ │ ├── team.go │ │ │ │ ├── team_user.go │ │ │ │ ├── user.go │ │ │ │ ├── user_account.go │ │ │ │ └── worklog.go │ │ │ └── register.go │ │ ├── notification.go │ │ ├── pipeline.go │ │ ├── pipeline_test.go │ │ ├── project.go │ │ ├── subtask_state.go │ │ └── task.go │ ├── plugin │ │ ├── api_client.go │ │ ├── hub.go │ │ ├── hub_test.go │ │ ├── plugin_api.go │ │ ├── plugin_blueprint.go │ │ ├── plugin_datasource.go │ │ ├── plugin_init.go │ │ ├── plugin_meta.go │ │ ├── plugin_metric.go │ │ ├── plugin_migration.go │ │ ├── plugin_model.go │ │ ├── plugin_openapi_spec.go │ │ ├── plugin_task.go │ │ ├── plugin_utils.go │ │ └── plugin_utils_test.go │ ├── runner │ │ ├── basic_res.go │ │ ├── db.go │ │ ├── db_test.go │ │ ├── directrun.go │ │ ├── loader.go │ │ ├── migration.go │ │ ├── run_pipeline.go │ │ └── run_task.go │ ├── utils │ │ ├── callframes.go │ │ ├── io.go │ │ ├── ipc.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── network_helper.go │ │ ├── network_helper_test.go │ │ ├── slice.go │ │ ├── slice_test.go │ │ ├── strconv.go │ │ ├── strings.go │ │ ├── strings_test.go │ │ ├── structfield.go │ │ ├── structfield_test.go │ │ └── token.go │ └── version │ │ └── version.go ├── go.mod ├── go.sum ├── helpers │ ├── apikeyhelper │ │ └── apikeyhelper.go │ ├── dbhelper │ │ └── txhelper.go │ ├── e2ehelper │ │ ├── data_flow_tester.go │ │ ├── data_flow_tester_test.go │ │ ├── null_string_test.go │ │ ├── nullable_test.go │ │ └── testdata │ │ │ └── issue_changelogs.csv │ ├── migrationhelper │ │ ├── migrationhelper.go │ │ └── migrationhelper_test.go │ ├── pluginhelper │ │ ├── api │ │ │ ├── api_async_client.go │ │ │ ├── api_client.go │ │ │ ├── api_client_test.go │ │ │ ├── api_collector.go │ │ │ ├── api_collector_func.go │ │ │ ├── api_collector_stateful.go │ │ │ ├── api_collector_test.go │ │ │ ├── api_extractor.go │ │ │ ├── api_extractor_stateful.go │ │ │ ├── api_ratelimit_calc.go │ │ │ ├── api_rawdata.go │ │ │ ├── apihelperabstract │ │ │ │ └── validate.go │ │ │ ├── batch_save.go │ │ │ ├── batch_save_divider.go │ │ │ ├── batch_save_divider_test.go │ │ │ ├── batch_save_test.go │ │ │ ├── collector_state_manager.go │ │ │ ├── collector_state_manager_test.go │ │ │ ├── config_util.go │ │ │ ├── config_util_test.go │ │ │ ├── connection.go │ │ │ ├── connection_auths.go │ │ │ ├── connection_helper.go │ │ │ ├── data_convertor.go │ │ │ ├── data_convertor_stateful.go │ │ │ ├── data_enricher.go │ │ │ ├── ds_connection_api_helper.go │ │ │ ├── ds_helper.go │ │ │ ├── ds_remote_api_proxy_api.go │ │ │ ├── ds_remote_api_scope_list_helper.go │ │ │ ├── ds_remote_api_scope_search_helper.go │ │ │ ├── ds_scope_api_helper.go │ │ │ ├── ds_scope_config_api_helper.go │ │ │ ├── enrich_with_regex.go │ │ │ ├── enrich_with_regex_test.go │ │ │ ├── graphql_async_client.go │ │ │ ├── graphql_collector.go │ │ │ ├── issue_repo_commit_convertor.go │ │ │ ├── issue_repo_commit_convertor_test.go │ │ │ ├── iterator.go │ │ │ ├── list.go │ │ │ ├── mapstructure.go │ │ │ ├── mapstructure_test.go │ │ │ ├── misc_helpers.go │ │ │ ├── model_api_helper.go │ │ │ ├── models │ │ │ │ ├── ds_remote_api_scope_list_entry.go │ │ │ │ └── ds_remote_api_scope_search_params.go │ │ │ ├── pagenation.go │ │ │ ├── pipeline_plan.go │ │ │ ├── pipeline_plan_test.go │ │ │ ├── queue.go │ │ │ ├── queue_test.go │ │ │ ├── reflection_helper.go │ │ │ ├── remote_api_helper.go │ │ │ ├── scope_config_helper.go │ │ │ ├── scope_db_helper.go │ │ │ ├── scope_generic_helper.go │ │ │ ├── scope_helper.go │ │ │ ├── scope_helper_test.go │ │ │ ├── subtask_state_manager.go │ │ │ ├── subtask_state_manager_test.go │ │ │ ├── worker_scheduler.go │ │ │ └── worker_scheduler_test.go │ │ ├── csv_file_iterator.go │ │ ├── csv_file_test.go │ │ ├── csv_file_writer.go │ │ ├── services │ │ │ └── blueprint_helper.go │ │ └── subtaskmeta │ │ │ └── sorter │ │ │ ├── interface.go │ │ │ ├── subtask.go │ │ │ ├── subtask_test.go │ │ │ ├── table.go │ │ │ ├── table_test.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ ├── srvhelper │ │ ├── connection_service_helper.go │ │ ├── dsrefs.go │ │ ├── model_service_helper.go │ │ ├── pagination.go │ │ ├── scope_config_service_helper.go │ │ ├── scope_service_helper.go │ │ └── scope_service_helper_test.go │ ├── unithelper │ │ ├── dummy_baesres.go │ │ ├── dummy_logger.go │ │ ├── dummy_subtaskcontext.go │ │ └── table_info_checker.go │ └── utils │ │ ├── field.go │ │ ├── field_test.go │ │ ├── mapstructure.go │ │ └── mapstructure_test.go ├── impls │ ├── context │ │ ├── default_basic_res.go │ │ ├── default_exec_context.go │ │ ├── default_subtask_context.go │ │ └── default_task_context.go │ ├── dalgorm │ │ ├── dalgorm.go │ │ ├── dalgorm_test.go │ │ ├── dalgorm_transaction.go │ │ ├── db_mapper.go │ │ └── encdec_serializer.go │ └── logruslog │ │ ├── init.go │ │ ├── logger.go │ │ ├── stream.go │ │ └── utils.go ├── plugins │ ├── ae │ │ ├── ae.go │ │ ├── api │ │ │ ├── connection.go │ │ │ └── init.go │ │ ├── e2e │ │ │ ├── commit_test.go │ │ │ ├── project_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_ae_commits.csv │ │ │ │ ├── _raw_ae_project.csv │ │ │ │ └── _raw_commits.csv │ │ │ └── snapshot_tables │ │ │ │ ├── _tool_ae_commits.csv │ │ │ │ ├── _tool_ae_projects.csv │ │ │ │ └── commits.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── commit.go │ │ │ ├── connection.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20220714_add_init_tables.go │ │ │ │ ├── archived │ │ │ │ │ ├── commit.go │ │ │ │ │ ├── connection.go │ │ │ │ │ └── project.go │ │ │ │ └── register.go │ │ │ └── project.go │ │ └── tasks │ │ │ ├── api_client.go │ │ │ ├── commits_collector.go │ │ │ ├── commits_convertor.go │ │ │ ├── commits_extractor.go │ │ │ ├── project_collector.go │ │ │ ├── project_extractor.go │ │ │ └── task_data.go │ ├── azuredevops_go │ │ ├── README.md │ │ ├── api │ │ │ ├── azuredevops │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── models.go │ │ │ │ └── testdata │ │ │ │ │ └── test.txt │ │ │ ├── blueprint_v200.go │ │ │ ├── blueprint_v200_test.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── remote_helper.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ └── swagger.go │ │ ├── azuredevops.go │ │ ├── e2e │ │ │ ├── build_test.go │ │ │ ├── pr_commit_test.go │ │ │ ├── pr_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_azuredevops_go_api_builds.csv │ │ │ │ ├── _raw_azuredevops_go_api_pull_request_commits.csv │ │ │ │ ├── _raw_azuredevops_go_api_pull_requests.csv │ │ │ │ ├── _raw_azuredevops_go_api_timeline_records.csv │ │ │ │ └── _tool_azuredevops_go_repos.csv │ │ │ ├── repo_test.go │ │ │ ├── snapshot_tables │ │ │ │ ├── _tool_azuredevops_go_builds.csv │ │ │ │ ├── _tool_azuredevops_go_commits.csv │ │ │ │ ├── _tool_azuredevops_go_pull_request_commits.csv │ │ │ │ ├── _tool_azuredevops_go_pull_request_labels.csv │ │ │ │ ├── _tool_azuredevops_go_pull_requests.csv │ │ │ │ ├── _tool_azuredevops_go_pull_requests_for_pr_commit_test.csv │ │ │ │ ├── _tool_azuredevops_go_repo_commits.csv │ │ │ │ ├── _tool_azuredevops_go_timeline_records.csv │ │ │ │ ├── cicd_pipeline_commits.csv │ │ │ │ ├── cicd_pipelines.csv │ │ │ │ ├── cicd_scopes.csv │ │ │ │ ├── cicd_tasks.csv │ │ │ │ ├── commits.csv │ │ │ │ ├── pull_request_commits.csv │ │ │ │ ├── pull_request_labels.csv │ │ │ │ ├── pull_requests.csv │ │ │ │ ├── repo_commits.csv │ │ │ │ └── repos.csv │ │ │ └── timeline_records_test.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── base.go │ │ │ ├── build.go │ │ │ ├── commit.go │ │ │ ├── connection.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20240211_add_init_tables.go │ │ │ │ ├── 20240413_add_remote_repo_support.go │ │ │ │ ├── archived │ │ │ │ │ ├── base.go │ │ │ │ │ ├── build.go │ │ │ │ │ ├── commit.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── pr.go │ │ │ │ │ ├── pr_commit.go │ │ │ │ │ ├── pr_label.go │ │ │ │ │ ├── repo.go │ │ │ │ │ ├── repo_commit.go │ │ │ │ │ ├── scope_config.go │ │ │ │ │ ├── timeline_record.go │ │ │ │ │ └── user.go │ │ │ │ └── register.go │ │ │ ├── pr.go │ │ │ ├── pr_commit.go │ │ │ ├── pr_label.go │ │ │ ├── project.go │ │ │ ├── repo.go │ │ │ ├── repo_commit.go │ │ │ ├── scope_config.go │ │ │ ├── timeline_record.go │ │ │ └── user.go │ │ └── tasks │ │ │ ├── account_collector.go │ │ │ ├── account_converter.go │ │ │ ├── account_extractor.go │ │ │ ├── api_client.go │ │ │ ├── ci_cd_build_collector.go │ │ │ ├── ci_cd_build_converter.go │ │ │ ├── ci_cd_build_extractor.go │ │ │ ├── ci_cd_timeline_records_collector.go │ │ │ ├── ci_cd_timeline_records_converter.go │ │ │ ├── ci_cd_timeline_records_extractor.go │ │ │ ├── commit_collector.go │ │ │ ├── commit_converter.go │ │ │ ├── commit_extractor.go │ │ │ ├── pr_collector.go │ │ │ ├── pr_commit_collector.go │ │ │ ├── pr_commit_converter.go │ │ │ ├── pr_commit_extractor.go │ │ │ ├── pr_converter.go │ │ │ ├── pr_extractor.go │ │ │ ├── pr_label_converter.go │ │ │ ├── register.go │ │ │ ├── repo_converter.go │ │ │ ├── shared.go │ │ │ └── task_data.go │ ├── bamboo │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ └── scope_state_api.go │ │ ├── bamboo.go │ │ ├── e2e │ │ │ ├── deploy_build_test.go │ │ │ ├── deploy_test.go │ │ │ ├── job_build_test.go │ │ │ ├── job_test.go │ │ │ ├── plan_build_commits_test.go │ │ │ ├── plan_build_test.go │ │ │ ├── plan_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_bamboo_api_deploy_builds.csv │ │ │ │ ├── _raw_bamboo_api_deploy_builds_no_prod_env.csv │ │ │ │ ├── _raw_bamboo_api_deploys.csv │ │ │ │ ├── _raw_bamboo_api_job_builds.csv │ │ │ │ ├── _raw_bamboo_api_jobs.csv │ │ │ │ ├── _raw_bamboo_api_plan_builds.csv │ │ │ │ └── _tool_bamboo_plans_for_deploys.csv │ │ │ └── snapshot_tables │ │ │ │ ├── _tool_bamboo_deploy_builds.csv │ │ │ │ ├── _tool_bamboo_deploy_environments.csv │ │ │ │ ├── _tool_bamboo_job_builds.csv │ │ │ │ ├── _tool_bamboo_job_builds_no_prod_env.csv │ │ │ │ ├── _tool_bamboo_jobs.csv │ │ │ │ ├── _tool_bamboo_plan_build_commits.csv │ │ │ │ ├── _tool_bamboo_plan_builds.csv │ │ │ │ ├── _tool_bamboo_plans.csv │ │ │ │ ├── cicd_deployment_commits.csv │ │ │ │ ├── cicd_deployments.csv │ │ │ │ ├── cicd_pipeline_commits.csv │ │ │ │ ├── cicd_pipelines.csv │ │ │ │ ├── cicd_scopes.csv │ │ │ │ └── cicd_tasks.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── connection.go │ │ │ ├── deploy.go │ │ │ ├── deploy_build.go │ │ │ ├── job.go │ │ │ ├── job_build.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20230309_add_init_tables.go │ │ │ │ ├── 20230322_add_connection_id_to_transformation_rules.go │ │ │ │ ├── 20230419_add_type_and_environment.go │ │ │ │ ├── 20230518_scope_config.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── 20230725_add_scopeConfigId_to_plan.go │ │ │ │ ├── 20230801_add_env_name_pattern.go │ │ │ │ ├── 20230807_add_plan_result_key.go │ │ │ │ ├── 20230919_rename_tool_bamboo_deploy_builds.go │ │ │ │ ├── 20230919_rename_tool_bamboo_deploy_environments.go │ │ │ │ ├── 20230920_rename_raw_tables.go │ │ │ │ ├── 20231121_add_missing_primary_key.go │ │ │ │ ├── 20231128_add_queued_fields_in_job_builds.go │ │ │ │ ├── 20240411_add_link_href_to_plan_build.go │ │ │ │ ├── archived │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── deploy.go │ │ │ │ │ ├── deploy_build.go │ │ │ │ │ ├── job.go │ │ │ │ │ ├── job_build.go │ │ │ │ │ ├── plan.go │ │ │ │ │ ├── plan_build.go │ │ │ │ │ ├── plan_build_commit.go │ │ │ │ │ ├── project.go │ │ │ │ │ └── transformation_rule.go │ │ │ │ └── register.go │ │ │ ├── plan.go │ │ │ ├── plan_build.go │ │ │ ├── plan_build_commit.go │ │ │ ├── scope_config.go │ │ │ ├── scope_config_test.go │ │ │ ├── share.go │ │ │ └── task_data.go │ │ └── tasks │ │ │ ├── api_client.go │ │ │ ├── deploy_build_collector.go │ │ │ ├── deploy_build_extractor.go │ │ │ ├── deploy_build_to_deployment_commit_convertor.go │ │ │ ├── deploy_build_to_deployment_convertor.go │ │ │ ├── deploy_collector.go │ │ │ ├── deploy_extractor.go │ │ │ ├── job_build_collector.go │ │ │ ├── job_build_convertor.go │ │ │ ├── job_build_extractor.go │ │ │ ├── job_collector.go │ │ │ ├── job_extractor.go │ │ │ ├── plan_build_collector.go │ │ │ ├── plan_build_convertor.go │ │ │ ├── plan_build_extractor.go │ │ │ ├── plan_commit_convertor.go │ │ │ ├── plan_convertor.go │ │ │ ├── shared.go │ │ │ ├── shared_test.go │ │ │ └── task_data.go │ ├── bitbucket │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ └── scope_state_api.go │ │ ├── bitbucket.go │ │ ├── e2e │ │ │ ├── account_test.go │ │ │ ├── comment_test.go │ │ │ ├── deployments_test.go │ │ │ ├── issue_test.go │ │ │ ├── pipeline_steps_test.go │ │ │ ├── pipelines_test.go │ │ │ ├── pr_commit_test.go │ │ │ ├── pr_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_bitbucket_api_deployments.csv │ │ │ │ ├── _raw_bitbucket_api_issue_comments.csv │ │ │ │ ├── _raw_bitbucket_api_issues.csv │ │ │ │ ├── _raw_bitbucket_api_pipeline_steps.csv │ │ │ │ ├── _raw_bitbucket_api_pipelines.csv │ │ │ │ ├── _raw_bitbucket_api_pull_request_commits.csv │ │ │ │ ├── _raw_bitbucket_api_pull_requests.csv │ │ │ │ ├── _raw_bitbucket_api_pullrequest_comments.csv │ │ │ │ └── _raw_bitbucket_api_repositories.csv │ │ │ ├── repo_test.go │ │ │ └── snapshot_tables │ │ │ │ ├── _tool_bitbucket_accounts.csv │ │ │ │ ├── _tool_bitbucket_accounts_in_comments.csv │ │ │ │ ├── _tool_bitbucket_accounts_in_issue.csv │ │ │ │ ├── _tool_bitbucket_accounts_in_pr.csv │ │ │ │ ├── _tool_bitbucket_deployments.csv │ │ │ │ ├── _tool_bitbucket_deployments_for_deployment.csv │ │ │ │ ├── _tool_bitbucket_issue_comments.csv │ │ │ │ ├── _tool_bitbucket_issues.csv │ │ │ │ ├── _tool_bitbucket_pipeline_steps.csv │ │ │ │ ├── _tool_bitbucket_pipelines.csv │ │ │ │ ├── _tool_bitbucket_pipelines_for_deployment.csv │ │ │ │ ├── _tool_bitbucket_pull_request_comments.csv │ │ │ │ ├── _tool_bitbucket_pull_request_commits.csv │ │ │ │ ├── _tool_bitbucket_pull_requests.csv │ │ │ │ ├── _tool_bitbucket_repos.csv │ │ │ │ ├── _tool_bitbucket_repos_for_deployment.csv │ │ │ │ ├── accounts.csv │ │ │ │ ├── board_issues.csv │ │ │ │ ├── boards.csv │ │ │ │ ├── cicd_deployment_commits_for_deployment.csv │ │ │ │ ├── cicd_deployments_for_deployment.csv │ │ │ │ ├── cicd_pipeline_commits.csv │ │ │ │ ├── cicd_pipelines.csv │ │ │ │ ├── cicd_scopes.csv │ │ │ │ ├── cicd_tasks.csv │ │ │ │ ├── issue_assignees.csv │ │ │ │ ├── issue_comments.csv │ │ │ │ ├── issues.csv │ │ │ │ ├── pull_request_comments.csv │ │ │ │ ├── pull_request_commits.csv │ │ │ │ ├── pull_requests.csv │ │ │ │ └── repos.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── account.go │ │ │ ├── commit.go │ │ │ ├── connection.go │ │ │ ├── deployment.go │ │ │ ├── issue.go │ │ │ ├── issue_comment.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20220803_add_init_tables.go │ │ │ │ ├── 20220914_add_pipeline_tables.go │ │ │ │ ├── 20221008_add_prcommits_tables.go │ │ │ │ ├── 20221013_add_deployment_tables.go │ │ │ │ ├── 20221014_add_RepoId_CommitSha_field_pipeline_tables.go │ │ │ │ ├── 20230206_add_scope_and_transformation.go │ │ │ │ ├── 20230215_add_pipeline_step.go │ │ │ │ ├── 20230322_add_connection_id_to_transformation_rules.go │ │ │ │ ├── 20230410_add_type_env_to_pipeline_and_step.go │ │ │ │ ├── 20230411_add_RepoId_field_pipelinestep_tables.go │ │ │ │ ├── 20230417_add_repo_id_to_pr.go │ │ │ │ ├── 20230420_add_pr_commit_author_info.go │ │ │ │ ├── 20230525_scope_config.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── 20231025_add_build_number_to_pipelines.go │ │ │ │ ├── 20231123_add_primary_key_for_bitbucket_pipeline_steps.go │ │ │ │ ├── 20240717_add_merge_by_to_pr.go │ │ │ │ ├── 20240813_change_issue_component_type.go │ │ │ │ ├── archived │ │ │ │ │ ├── account.go │ │ │ │ │ ├── commit.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── issue.go │ │ │ │ │ ├── issue_comment.go │ │ │ │ │ ├── pipeline.go │ │ │ │ │ ├── pipeline_step.go │ │ │ │ │ ├── pr.go │ │ │ │ │ ├── pr_comment.go │ │ │ │ │ ├── pr_commit.go │ │ │ │ │ ├── repo.go │ │ │ │ │ ├── repo_commit.go │ │ │ │ │ └── transformation_rule.go │ │ │ │ └── register.go │ │ │ ├── pipeline.go │ │ │ ├── pipeline_step.go │ │ │ ├── pr.go │ │ │ ├── pr_comment.go │ │ │ ├── pr_commit.go │ │ │ ├── repo.go │ │ │ ├── repo_commit.go │ │ │ └── scope_config.go │ │ └── tasks │ │ │ ├── account_convertor.go │ │ │ ├── account_extractor.go │ │ │ ├── api_client.go │ │ │ ├── api_common.go │ │ │ ├── commit_collector.go │ │ │ ├── commit_convertor.go │ │ │ ├── commit_extractor.go │ │ │ ├── deployment_collector.go │ │ │ ├── deployment_convertor.go │ │ │ ├── deployment_extractor.go │ │ │ ├── issue_collector.go │ │ │ ├── issue_comment_collector.go │ │ │ ├── issue_comment_convertor.go │ │ │ ├── issue_comment_extractor.go │ │ │ ├── issue_convertor.go │ │ │ ├── issue_extractor.go │ │ │ ├── pipeline_collector.go │ │ │ ├── pipeline_convertor.go │ │ │ ├── pipeline_extractor.go │ │ │ ├── pipeline_steps_collector.go │ │ │ ├── pipeline_steps_convertor.go │ │ │ ├── pipeline_steps_extractor.go │ │ │ ├── pr_collector.go │ │ │ ├── pr_comment_collector.go │ │ │ ├── pr_comment_convertor.go │ │ │ ├── pr_comment_extractor.go │ │ │ ├── pr_commit_collector.go │ │ │ ├── pr_commit_convertor.go │ │ │ ├── pr_commit_extractor.go │ │ │ ├── pr_convertor.go │ │ │ ├── pr_extractor.go │ │ │ ├── repo_convertor.go │ │ │ └── task_data.go │ ├── bitbucket_server │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ └── scope_state_api.go │ │ ├── bitbucket_server.go │ │ ├── e2e │ │ │ ├── pr_commit_test.go │ │ │ ├── pr_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_bitbucket_server_api_pull_request_commits.csv │ │ │ │ └── _raw_bitbucket_server_api_pull_requests.csv │ │ │ └── snapshot_tables │ │ │ │ ├── _tool_bitbucket_pull_request_commits.csv │ │ │ │ ├── _tool_bitbucket_server_pull_requests.csv │ │ │ │ ├── _tool_bitbucket_server_users_in_pr.csv │ │ │ │ ├── pull_request_commits.csv │ │ │ │ └── pull_requests.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── connection.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20240115_add_init_tables.go │ │ │ │ ├── archived │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── pr.go │ │ │ │ │ ├── pr_comment.go │ │ │ │ │ ├── pr_commit.go │ │ │ │ │ ├── repo.go │ │ │ │ │ ├── scope_config.go │ │ │ │ │ └── user.go │ │ │ │ └── register.go │ │ │ ├── pr.go │ │ │ ├── pr_comment.go │ │ │ ├── pr_commit.go │ │ │ ├── repo.go │ │ │ ├── scope_config.go │ │ │ └── user.go │ │ └── tasks │ │ │ ├── api_client.go │ │ │ ├── api_common.go │ │ │ ├── pr_activity_collector.go │ │ │ ├── pr_activity_extractor.go │ │ │ ├── pr_collector.go │ │ │ ├── pr_comment_convertor.go │ │ │ ├── pr_commit_collector.go │ │ │ ├── pr_commit_convertor.go │ │ │ ├── pr_commit_extractor.go │ │ │ ├── pr_convertor.go │ │ │ ├── pr_extractor.go │ │ │ ├── repo_convertor.go │ │ │ ├── task_data.go │ │ │ ├── user_convertor.go │ │ │ └── user_extractor.go │ ├── circleci │ │ ├── README.md │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ └── scope_state_api.go │ │ ├── circleci.go │ │ ├── e2e │ │ │ ├── job_test.go │ │ │ ├── pipeline_test.go │ │ │ ├── project_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_circleci_api_jobs.csv │ │ │ │ ├── _raw_circleci_api_pipelines.csv │ │ │ │ ├── _raw_circleci_api_projects.csv │ │ │ │ ├── _raw_circleci_api_users.csv │ │ │ │ └── _raw_circleci_api_workflows.csv │ │ │ ├── snapshot_tables │ │ │ │ ├── _tool_circleci_accounts.csv │ │ │ │ ├── _tool_circleci_connections.csv │ │ │ │ ├── _tool_circleci_jobs.csv │ │ │ │ ├── _tool_circleci_pipelines.csv │ │ │ │ ├── _tool_circleci_projects.csv │ │ │ │ ├── _tool_circleci_workflows.csv │ │ │ │ ├── accounts.csv │ │ │ │ ├── cicd_pipelines.csv │ │ │ │ ├── cicd_scopes.csv │ │ │ │ └── cicd_tasks.csv │ │ │ └── workflow_test.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── account.go │ │ │ ├── connection.go │ │ │ ├── job.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20230326_add_init_tables.go │ │ │ │ ├── 20231129_add_fields_to_tool_circleci_jobs.go │ │ │ │ ├── archived │ │ │ │ │ ├── account.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── job.go │ │ │ │ │ ├── pipeline.go │ │ │ │ │ ├── project.go │ │ │ │ │ ├── scope_config.go │ │ │ │ │ └── workflow.go │ │ │ │ └── register.go │ │ │ ├── pipeline.go │ │ │ ├── project.go │ │ │ ├── scope_config.go │ │ │ └── workflow.go │ │ └── tasks │ │ │ ├── account_collector.go │ │ │ ├── account_converter.go │ │ │ ├── account_extractor.go │ │ │ ├── api_client.go │ │ │ ├── job_collector.go │ │ │ ├── job_converter.go │ │ │ ├── job_extractor.go │ │ │ ├── pipeline_collector.go │ │ │ ├── pipeline_extractor.go │ │ │ ├── project_collector.go │ │ │ ├── project_converter.go │ │ │ ├── project_extractor.go │ │ │ ├── shared.go │ │ │ ├── task_data.go │ │ │ ├── workflow_collector.go │ │ │ ├── workflow_converter.go │ │ │ └── workflow_extractor.go │ ├── customize │ │ ├── README.md │ │ ├── api │ │ │ ├── csv_issue.go │ │ │ ├── csv_qa.go │ │ │ ├── field.go │ │ │ └── swagger.go │ │ ├── customize.go │ │ ├── e2e │ │ │ ├── customized_fields_test.go │ │ │ ├── extract_fields_test.go │ │ │ ├── import_issue_commits_test.go │ │ │ ├── import_issue_repo_commits_test.go │ │ │ ├── import_issues_test.go │ │ │ ├── import_qa_apis_test.go │ │ │ ├── import_qa_test_cases_test.go │ │ │ ├── import_test_case_execution_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_jira_api_issues.csv │ │ │ │ ├── board_issues.csv │ │ │ │ ├── issue_repo_commits.csv │ │ │ │ ├── issue_repo_commits_incremental.csv │ │ │ │ ├── issue_repo_commits_original.csv │ │ │ │ ├── issues.csv │ │ │ │ ├── issues_commits.csv │ │ │ │ ├── issues_input.csv │ │ │ │ ├── issues_input2.csv │ │ │ │ ├── issues_input2_overwrite.csv │ │ │ │ ├── issues_input_incremental.csv │ │ │ │ ├── qa_apis_input.csv │ │ │ │ ├── qa_apis_input_incremental.csv │ │ │ │ ├── qa_full_test_cases_input.csv │ │ │ │ ├── qa_non_api_test_cases.csv │ │ │ │ ├── qa_test_case_executions_input.csv │ │ │ │ ├── qa_test_case_executions_input_incremental.csv │ │ │ │ ├── qa_test_cases_input.csv │ │ │ │ └── qa_test_cases_input_incremental.csv │ │ │ └── snapshot_tables │ │ │ │ ├── accounts.csv │ │ │ │ ├── accounts_from_qa_apis_incremental_output.csv │ │ │ │ ├── accounts_from_qa_apis_output.csv │ │ │ │ ├── accounts_from_qa_test_case_executions_output.csv │ │ │ │ ├── accounts_from_qa_test_case_executions_output_incremental.csv │ │ │ │ ├── accounts_from_qa_test_cases.csv │ │ │ │ ├── board_issues.csv │ │ │ │ ├── issue_commits_from_import_issue_commit.csv │ │ │ │ ├── issue_commits_from_import_issue_repo_commit.csv │ │ │ │ ├── issue_labels.csv │ │ │ │ ├── issue_repo_commits.csv │ │ │ │ ├── issues_for_data_extraction_board8.csv │ │ │ │ ├── issues_for_data_extraction_board9.csv │ │ │ │ ├── issues_for_data_extraction_wildcard.csv │ │ │ │ ├── issues_output.csv │ │ │ │ ├── qa_apis_output.csv │ │ │ │ ├── qa_apis_output_incremental.csv │ │ │ │ ├── qa_projects_output.csv │ │ │ │ ├── qa_test_case_executions_output.csv │ │ │ │ ├── qa_test_case_executions_output_incremental.csv │ │ │ │ ├── qa_test_cases_output.csv │ │ │ │ └── qa_test_cases_output_incremental.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── customized_field.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20230201_add_customized_fields.go │ │ │ │ ├── archived │ │ │ │ │ └── customized_field.go │ │ │ │ └── register.go │ │ │ └── model.go │ │ ├── service │ │ │ ├── service.go │ │ │ └── service_test.go │ │ └── tasks │ │ │ ├── customized_fields_extractor.go │ │ │ └── task_data.go │ ├── dbt │ │ ├── README.md │ │ ├── api │ │ │ └── swagger.go │ │ ├── dbt.go │ │ ├── impl │ │ │ └── impl.go │ │ └── tasks │ │ │ ├── convertor.go │ │ │ ├── git.go │ │ │ └── task_data.go │ ├── dora │ │ ├── api │ │ │ └── data.go │ │ ├── dora.go │ │ ├── e2e │ │ │ ├── calculate_change_lead_time_test.go │ │ │ ├── change_lead_time │ │ │ │ ├── cicd_deployment_commits.csv │ │ │ │ ├── cicd_scopes.csv │ │ │ │ ├── commits_diffs.csv │ │ │ │ ├── project_mapping.csv │ │ │ │ ├── project_pr_metrics.csv │ │ │ │ ├── pull_request_comments.csv │ │ │ │ ├── pull_request_commits.csv │ │ │ │ ├── pull_requests.csv │ │ │ │ └── repos.csv │ │ │ ├── connect_incident_to_deploy_test.go │ │ │ ├── connect_incident_to_deployment │ │ │ │ ├── prev_success_deployment_commit │ │ │ │ │ └── cicd_deployment_commits_after.csv │ │ │ │ ├── raw_tables │ │ │ │ │ ├── incidents.csv │ │ │ │ │ └── project_mapping.csv │ │ │ │ └── snapshot_tables │ │ │ │ │ └── project_incident_deployment_relationships.csv │ │ │ ├── deployment_commits_generator_test.go │ │ │ ├── deployment_generator │ │ │ │ ├── cicd_deployment_commits.csv │ │ │ │ ├── cicd_pipeline_commits.csv │ │ │ │ ├── cicd_pipelines.csv │ │ │ │ ├── cicd_tasks.csv │ │ │ │ └── project_mapping.csv │ │ │ ├── prev_deployment_commit_enricher_test.go │ │ │ ├── prev_success_deployment_commit │ │ │ │ ├── cicd_deployment_commits_after.csv │ │ │ │ ├── cicd_deployment_commits_before.csv │ │ │ │ └── project_mapping.csv │ │ │ ├── raw_tables │ │ │ │ ├── board_issues.csv │ │ │ │ ├── cicd_deployment_commits_before_enrich.csv │ │ │ │ ├── cicd_pipeline_commits.csv │ │ │ │ ├── cicd_tasks.csv │ │ │ │ ├── cicd_tasks_for_enrich_env.csv │ │ │ │ ├── issues.csv │ │ │ │ ├── lake_cicd_pipeline_commits.csv │ │ │ │ └── project_mapping.csv │ │ │ └── snapshot_tables │ │ │ │ ├── enrich_cicd_tasks.csv │ │ │ │ └── project_incident_deployment_relationships.csv │ │ ├── impl │ │ │ ├── impl.go │ │ │ └── impl_test.go │ │ ├── models │ │ │ └── migrationscripts │ │ │ │ ├── 20220928_add_dora_benchmark.go │ │ │ │ ├── 20240104_fix_dora_benchmark_metric.go │ │ │ │ ├── 20240223_add_dora_2023_benchmark.go │ │ │ │ └── register.go │ │ └── tasks │ │ │ ├── change_lead_time_calculator.go │ │ │ ├── cicd_task_env_enricher.go │ │ │ ├── deployment_commits_generator.go │ │ │ ├── deployment_generator.go │ │ │ ├── incident_deploy_connector.go │ │ │ ├── incident_from_issue_generator.go │ │ │ ├── prev_deployment_commit_enricher.go │ │ │ └── task_data.go │ ├── feishu │ │ ├── README.md │ │ ├── api │ │ │ ├── connection.go │ │ │ ├── init.go │ │ │ └── swagger.go │ │ ├── apimodels │ │ │ ├── access_token.go │ │ │ ├── im_result.go │ │ │ └── meeting_top_user_item_result.go │ │ ├── e2e │ │ │ ├── meeting_test.go │ │ │ ├── raw_tables │ │ │ │ └── _raw_feishu_meeting_top_user_item.csv │ │ │ └── snapshot_tables │ │ │ │ └── _tool_feishu_meeting_top_user_items.csv │ │ ├── feishu.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── chat_item.go │ │ │ ├── connection.go │ │ │ ├── meeting_top_user_item.go │ │ │ ├── message.go │ │ │ └── migrationscripts │ │ │ │ ├── 20230421_add_init_tables.go │ │ │ │ ├── archived │ │ │ │ ├── chat_item.go │ │ │ │ ├── connection.go │ │ │ │ ├── meeting_top_user_item.go │ │ │ │ └── message.go │ │ │ │ └── register.go │ │ └── tasks │ │ │ ├── api_client.go │ │ │ ├── chat_collector.go │ │ │ ├── chat_extractor.go │ │ │ ├── meeting_top_user_item_collector.go │ │ │ ├── meeting_top_user_item_extractor.go │ │ │ ├── message_collector.go │ │ │ ├── message_extractor.go │ │ │ └── task_data.go │ ├── gitee │ │ ├── README.md │ │ ├── api │ │ │ ├── connection.go │ │ │ ├── init.go │ │ │ └── swagger.go │ │ ├── gitee.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── account.go │ │ │ ├── commit.go │ │ │ ├── commit_stats.go │ │ │ ├── connection.go │ │ │ ├── issue.go │ │ │ ├── issue_comment.go │ │ │ ├── issue_label.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20220714_add_init_tables.go │ │ │ │ ├── 20230420_add_commit_author_info_in_pr_commits.go │ │ │ │ ├── 20230922_add_scope_config_id.go │ │ │ │ ├── 20240813_change_issue_component_type.go │ │ │ │ ├── archived │ │ │ │ │ ├── account.go │ │ │ │ │ ├── commit.go │ │ │ │ │ ├── commit_stat.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── issue.go │ │ │ │ │ ├── issue_comment.go │ │ │ │ │ ├── issue_label.go │ │ │ │ │ ├── pull_request.go │ │ │ │ │ ├── pull_request_comment.go │ │ │ │ │ ├── pull_request_commit.go │ │ │ │ │ ├── pull_request_issue.go │ │ │ │ │ ├── pull_request_label.go │ │ │ │ │ ├── repo.go │ │ │ │ │ ├── repo_commit.go │ │ │ │ │ └── reviewer.go │ │ │ │ └── register.go │ │ │ ├── pull_request.go │ │ │ ├── pull_request_comment.go │ │ │ ├── pull_request_commit.go │ │ │ ├── pull_request_issue.go │ │ │ ├── pull_request_label.go │ │ │ ├── repo.go │ │ │ ├── repo_commit.go │ │ │ └── reviewer.go │ │ └── tasks │ │ │ ├── account_convertor.go │ │ │ ├── api_client.go │ │ │ ├── commit_collector.go │ │ │ ├── commit_convertor.go │ │ │ ├── commit_extractor.go │ │ │ ├── commit_stats_collector.go │ │ │ ├── commit_stats_extractor.go │ │ │ ├── issue_collector.go │ │ │ ├── issue_comment_collector.go │ │ │ ├── issue_comment_convertor.go │ │ │ ├── issue_comment_extractor.go │ │ │ ├── issue_convertor.go │ │ │ ├── issue_extractor.go │ │ │ ├── issue_label_convertor.go │ │ │ ├── pr_collector.go │ │ │ ├── pr_comment_convertor.go │ │ │ ├── pr_commit_collector.go │ │ │ ├── pr_commit_convertor.go │ │ │ ├── pr_commit_extractor.go │ │ │ ├── pr_convertor.go │ │ │ ├── pr_extractor.go │ │ │ ├── pr_issue_convertor.go │ │ │ ├── pr_issue_enricher.go │ │ │ ├── pr_label_convertor.go │ │ │ ├── pr_review_collector.go │ │ │ ├── pr_review_extractor.go │ │ │ ├── repo_collector.go │ │ │ ├── repo_convertor.go │ │ │ ├── repo_extractor.go │ │ │ ├── shared.go │ │ │ └── task_data.go │ ├── gitextractor │ │ ├── README.md │ │ ├── api │ │ │ └── swagger.go │ │ ├── gitextractor.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── diffline.go │ │ │ ├── fileblame.go │ │ │ └── interface.go │ │ ├── parser │ │ │ ├── clone.go │ │ │ ├── clone_gitcli.go │ │ │ ├── repo.go │ │ │ ├── repo_gogit.go │ │ │ ├── repo_libgit2.go │ │ │ └── taskdata.go │ │ ├── store │ │ │ ├── csv.go │ │ │ ├── csv_test.go │ │ │ └── database.go │ │ └── tasks │ │ │ ├── repo_cloner.go │ │ │ └── repo_collector.go │ ├── github │ │ ├── README.md │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── connection_test.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── remote_data.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ ├── scope_state_api.go │ │ │ └── swagger.go │ │ ├── e2e │ │ │ ├── account_test.go │ │ │ ├── cicd_job_test.go │ │ │ ├── cicd_run_test.go │ │ │ ├── comment_test.go │ │ │ ├── commit_test.go │ │ │ ├── event_test.go │ │ │ ├── issue_assignee_test.go │ │ │ ├── issue_test.go │ │ │ ├── milestone_test.go │ │ │ ├── pr_commit_test.go │ │ │ ├── pr_enrich_issue_test.go │ │ │ ├── pr_review_test.go │ │ │ ├── pr_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_github_api_account_orgs.csv │ │ │ │ ├── _raw_github_api_accounts.csv │ │ │ │ ├── _raw_github_api_comments.csv │ │ │ │ ├── _raw_github_api_events.csv │ │ │ │ ├── _raw_github_api_issues.csv │ │ │ │ ├── _raw_github_api_jobs.csv │ │ │ │ ├── _raw_github_api_milestones.csv │ │ │ │ ├── _raw_github_api_pull_request_commits.csv │ │ │ │ ├── _raw_github_api_pull_request_review_comments.csv │ │ │ │ ├── _raw_github_api_pull_request_reviews.csv │ │ │ │ ├── _raw_github_api_pull_requests.csv │ │ │ │ ├── _raw_github_api_runs.csv │ │ │ │ ├── _tool_github_issue_labels.csv │ │ │ │ ├── _tool_github_issues.csv │ │ │ │ ├── _tool_github_pull_requests.csv │ │ │ │ ├── _tool_github_repo_accounts.csv │ │ │ │ └── _tool_github_repos.csv │ │ │ ├── repo_test.go │ │ │ └── snapshot_tables │ │ │ │ ├── _tool_github_account.csv │ │ │ │ ├── _tool_github_account_orgs.csv │ │ │ │ ├── _tool_github_accounts_in_comment.csv │ │ │ │ ├── _tool_github_accounts_in_event.csv │ │ │ │ ├── _tool_github_accounts_in_issue.csv │ │ │ │ ├── _tool_github_accounts_in_pr.csv │ │ │ │ ├── _tool_github_accounts_in_repo.csv │ │ │ │ ├── _tool_github_accounts_in_review.csv │ │ │ │ ├── _tool_github_commits.csv │ │ │ │ ├── _tool_github_issue_assignees.csv │ │ │ │ ├── _tool_github_issue_comments.csv │ │ │ │ ├── _tool_github_issue_events.csv │ │ │ │ ├── _tool_github_issue_labels.csv │ │ │ │ ├── _tool_github_issues.csv │ │ │ │ ├── _tool_github_jobs.csv │ │ │ │ ├── _tool_github_jobs_no_prod_env.csv │ │ │ │ ├── _tool_github_milestones.csv │ │ │ │ ├── _tool_github_pull_request_comments.csv │ │ │ │ ├── _tool_github_pull_request_commits.csv │ │ │ │ ├── _tool_github_pull_request_issues.csv │ │ │ │ ├── _tool_github_pull_request_labels.csv │ │ │ │ ├── _tool_github_pull_request_reviews.csv │ │ │ │ ├── _tool_github_pull_requests.csv │ │ │ │ ├── _tool_github_repo_accounts.csv │ │ │ │ ├── _tool_github_repos.csv │ │ │ │ ├── _tool_github_reviewers.csv │ │ │ │ ├── _tool_github_runs.csv │ │ │ │ ├── _tool_github_runs_no_prod_regex.csv │ │ │ │ ├── account.csv │ │ │ │ ├── board_issues.csv │ │ │ │ ├── board_repos.csv │ │ │ │ ├── board_sprint.csv │ │ │ │ ├── boards.csv │ │ │ │ ├── cicd_deployment_commits.csv │ │ │ │ ├── cicd_pipeline_commits.csv │ │ │ │ ├── cicd_pipelines.csv │ │ │ │ ├── cicd_scopes.csv │ │ │ │ ├── cicd_tasks.csv │ │ │ │ ├── issue_assignees.csv │ │ │ │ ├── issue_comments.csv │ │ │ │ ├── issue_labels.csv │ │ │ │ ├── issues.csv │ │ │ │ ├── pull_request_comments.csv │ │ │ │ ├── pull_request_commits.csv │ │ │ │ ├── pull_request_issues.csv │ │ │ │ ├── pull_request_labels.csv │ │ │ │ ├── pull_request_review_comments.csv │ │ │ │ ├── pull_requests.csv │ │ │ │ ├── repos.csv │ │ │ │ ├── sprint_issue.csv │ │ │ │ └── sprints.csv │ │ ├── github.go │ │ ├── impl │ │ │ ├── impl.go │ │ │ └── impl_test.go │ │ ├── models │ │ │ ├── account.go │ │ │ ├── account_org.go │ │ │ ├── commit.go │ │ │ ├── commit_stats.go │ │ │ ├── connection.go │ │ │ ├── connection_test.go │ │ │ ├── deployment.go │ │ │ ├── issue.go │ │ │ ├── issue_assignee.go │ │ │ ├── issue_comment.go │ │ │ ├── issue_event.go │ │ │ ├── issue_label.go │ │ │ ├── job.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20220715_add_init_tables.go │ │ │ │ ├── 20220728_add_runs_table.go │ │ │ │ ├── 20220729_add_jobs_table.go │ │ │ │ ├── 20220802_add_pipeline_table.go │ │ │ │ ├── 20220908_delete_pipeline_table.go │ │ │ │ ├── 20220919_add_headrepoId_field_in_githubPr.go │ │ │ │ ├── 20221114_add_enable_graphql_for_connection.go │ │ │ │ ├── 20221214_add_trasformation_rule_table.go │ │ │ │ ├── 20221214_concat_owner_name_for_repo.go │ │ │ │ ├── 20221230_add_std_type_to_githubissue.go │ │ │ │ ├── 20230322_add_connection_id_to_transformation_rules.go │ │ │ │ ├── 20230418_add_env_to_run_and_job.go │ │ │ │ ├── 20230419_add_commit_author_info_in_pr_commits.go │ │ │ │ ├── 20230428_add_multi_auth.go │ │ │ │ ├── 20230518_fix_run_name_to_text.go │ │ │ │ ├── 20230526_scope_config.go │ │ │ │ ├── 20230530_add_issue_assignee.go │ │ │ │ ├── 20230612_add_fullName.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── 20230913_add_tool_demployments.go │ │ │ │ ├── 20231018_modify_tool_github_milestones.go │ │ │ │ ├── 20231026_add_env_name_pattern_to_tool_github_scope_configs.go │ │ │ │ ├── 20231205_modify_issue_type_length.go │ │ │ │ ├── 20240410_add_workflow_display_title.go │ │ │ │ ├── 20240514_add_github_release.go │ │ │ │ ├── 20240515_add_release_commit_sha.go │ │ │ │ ├── 20240710_add_merge_by_to_pr.go │ │ │ │ ├── 20240711_restruct_github_reviewers.go │ │ │ │ ├── 20240725_add_is_draft_to_pr.go │ │ │ │ ├── 20240813_change_issue_component_type.go │ │ │ │ ├── 20240821_add_index_to_tool_github_jobs.go │ │ │ │ ├── archived │ │ │ │ │ ├── account.go │ │ │ │ │ ├── account_org.go │ │ │ │ │ ├── commit.go │ │ │ │ │ ├── commit_stat.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── issue.go │ │ │ │ │ ├── issue_comment.go │ │ │ │ │ ├── issue_event.go │ │ │ │ │ ├── issue_label.go │ │ │ │ │ ├── job.go │ │ │ │ │ ├── milestone.go │ │ │ │ │ ├── pipeline.go │ │ │ │ │ ├── pr_comment.go │ │ │ │ │ ├── pr_commit.go │ │ │ │ │ ├── pr_issue.go │ │ │ │ │ ├── pr_label.go │ │ │ │ │ ├── pr_review.go │ │ │ │ │ ├── pull_request.go │ │ │ │ │ ├── repo.go │ │ │ │ │ ├── repo_account.go │ │ │ │ │ ├── repo_commit.go │ │ │ │ │ ├── reviewer.go │ │ │ │ │ ├── run.go │ │ │ │ │ └── transformation_rules.go │ │ │ │ └── register.go │ │ │ ├── milestone.go │ │ │ ├── pr.go │ │ │ ├── pr_comment.go │ │ │ ├── pr_commit.go │ │ │ ├── pr_issue.go │ │ │ ├── pr_label.go │ │ │ ├── pr_review.go │ │ │ ├── release.go │ │ │ ├── repo.go │ │ │ ├── repo_account.go │ │ │ ├── repo_commit.go │ │ │ ├── reviewer.go │ │ │ ├── run.go │ │ │ └── scope_config.go │ │ ├── tasks │ │ │ ├── account_collector.go │ │ │ ├── account_convertor.go │ │ │ ├── account_extractor.go │ │ │ ├── account_org_collector.go │ │ │ ├── account_org_extractor.go │ │ │ ├── account_pre_extractor.go │ │ │ ├── api_client.go │ │ │ ├── cicd_job_collector.go │ │ │ ├── cicd_job_convertor.go │ │ │ ├── cicd_job_convertor_test.go │ │ │ ├── cicd_job_extractor.go │ │ │ ├── cicd_run_collector.go │ │ │ ├── cicd_run_convertor.go │ │ │ ├── cicd_run_extractor.go │ │ │ ├── comment_collector.go │ │ │ ├── comment_extractor.go │ │ │ ├── commit_collector.go │ │ │ ├── commit_convertor.go │ │ │ ├── commit_extractor.go │ │ │ ├── commit_stats_collector.go │ │ │ ├── commit_stats_extractor.go │ │ │ ├── event_collector.go │ │ │ ├── event_extractor.go │ │ │ ├── issue_assignee_convertor.go │ │ │ ├── issue_collector.go │ │ │ ├── issue_comment_convertor.go │ │ │ ├── issue_convertor.go │ │ │ ├── issue_extractor.go │ │ │ ├── issue_label_convertor.go │ │ │ ├── milestone_collector.go │ │ │ ├── milestone_converter.go │ │ │ ├── milestone_extractor.go │ │ │ ├── pr_collector.go │ │ │ ├── pr_comment_convertor.go │ │ │ ├── pr_commit_collector.go │ │ │ ├── pr_commit_convertor.go │ │ │ ├── pr_commit_extractor.go │ │ │ ├── pr_convertor.go │ │ │ ├── pr_extractor.go │ │ │ ├── pr_issue_convertor.go │ │ │ ├── pr_issue_enricher.go │ │ │ ├── pr_label_convertor.go │ │ │ ├── pr_review_collector.go │ │ │ ├── pr_review_comment_collector.go │ │ │ ├── pr_review_comment_extractor.go │ │ │ ├── pr_review_convertor.go │ │ │ ├── pr_review_extractor.go │ │ │ ├── register.go │ │ │ ├── release_convertor.go │ │ │ ├── repo_convertor.go │ │ │ ├── review_convertor.go │ │ │ ├── shared.go │ │ │ └── task_data.go │ │ └── utils │ │ │ ├── utils.go │ │ │ └── utils_test.go │ ├── github_graphql │ │ ├── e2e │ │ │ ├── deployment_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_github_graphql_deployment.csv │ │ │ │ └── _tool_github_repos2.csv │ │ │ └── snapshot_tables │ │ │ │ ├── _tool_github_deployments.csv │ │ │ │ ├── cicd_deployment_commits.csv │ │ │ │ └── cicd_deployments.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── model │ │ │ └── migrationscripts │ │ │ │ ├── 20240808_flush_rawdata.go │ │ │ │ └── register.go │ │ ├── plugin_main.go │ │ └── tasks │ │ │ ├── account_collector.go │ │ │ ├── account_extractor.go │ │ │ ├── account_graphql_pre_extractor.go │ │ │ ├── deployment_collector.go │ │ │ ├── deployment_convertor.go │ │ │ ├── deployment_extractor.go │ │ │ ├── issue_collector.go │ │ │ ├── issue_extractor.go │ │ │ ├── job_collector.go │ │ │ ├── job_extractor.go │ │ │ ├── pr_collector.go │ │ │ ├── pr_extractor.go │ │ │ ├── release_collector.go │ │ │ ├── release_extractor.go │ │ │ └── shared.go │ ├── gitlab │ │ ├── README.md │ │ ├── api │ │ │ ├── blueprint_V200_test.go │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ ├── scope_state_api.go │ │ │ └── swagger.go │ │ ├── e2e │ │ │ ├── account_test.go │ │ │ ├── deployment_test.go │ │ │ ├── issues_test.go │ │ │ ├── job_test.go │ │ │ ├── mr_commits_test.go │ │ │ ├── mr_detail_test.go │ │ │ ├── mr_notes_test.go │ │ │ ├── mr_test.go │ │ │ ├── pipelines_detail_test.go │ │ │ ├── pipelines_test.go │ │ │ ├── project_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_gitlab_api_deployments.csv │ │ │ │ ├── _raw_gitlab_api_issues.csv │ │ │ │ ├── _raw_gitlab_api_job.csv │ │ │ │ ├── _raw_gitlab_api_merge_request_commits.csv │ │ │ │ ├── _raw_gitlab_api_merge_request_notes.csv │ │ │ │ ├── _raw_gitlab_api_merge_requests.csv │ │ │ │ ├── _raw_gitlab_api_merge_requests_for_mr_commit_test.csv │ │ │ │ ├── _raw_gitlab_api_merge_requests_for_mr_notes_test.csv │ │ │ │ ├── _raw_gitlab_api_pipeline.csv │ │ │ │ ├── _raw_gitlab_api_pipeline_details.csv │ │ │ │ ├── _raw_gitlab_api_trigger_job.csv │ │ │ │ ├── _raw_gitlab_api_users.csv │ │ │ │ ├── _raw_gitlab_api_users_direct_api.csv │ │ │ │ └── _tool_gitlab_projects.csv │ │ │ ├── snapshot_tables │ │ │ │ ├── _raw_gitlab_api_pipeline_details.csv │ │ │ │ ├── _tool_gitlab_accounts.csv │ │ │ │ ├── _tool_gitlab_accounts_direct_api.csv │ │ │ │ ├── _tool_gitlab_commits.csv │ │ │ │ ├── _tool_gitlab_deployments.csv │ │ │ │ ├── _tool_gitlab_issue_assignees.csv │ │ │ │ ├── _tool_gitlab_issue_labels.csv │ │ │ │ ├── _tool_gitlab_issues.csv │ │ │ │ ├── _tool_gitlab_jobs.csv │ │ │ │ ├── _tool_gitlab_jobs_with_triggered.csv │ │ │ │ ├── _tool_gitlab_merge_request_details.csv │ │ │ │ ├── _tool_gitlab_merge_requests.csv │ │ │ │ ├── _tool_gitlab_merge_requests_for_mr_commit_test.csv │ │ │ │ ├── _tool_gitlab_merge_requests_for_mr_notes_test.csv │ │ │ │ ├── _tool_gitlab_mr_comments.csv │ │ │ │ ├── _tool_gitlab_mr_commits.csv │ │ │ │ ├── _tool_gitlab_mr_labels.csv │ │ │ │ ├── _tool_gitlab_mr_notes.csv │ │ │ │ ├── _tool_gitlab_pipeline_projects.csv │ │ │ │ ├── _tool_gitlab_pipeline_projects_details.csv │ │ │ │ ├── _tool_gitlab_pipelines.csv │ │ │ │ ├── _tool_gitlab_pipelines_no_prod_regex.csv │ │ │ │ ├── _tool_gitlab_project_commits.csv │ │ │ │ ├── _tool_gitlab_projects.csv │ │ │ │ ├── accounts.csv │ │ │ │ ├── accounts_direct_api.csv │ │ │ │ ├── board_issues.csv │ │ │ │ ├── board_repos.csv │ │ │ │ ├── boards.csv │ │ │ │ ├── cicd_deployment_commits.csv │ │ │ │ ├── cicd_deployments.csv │ │ │ │ ├── cicd_pipeline_commits.csv │ │ │ │ ├── cicd_pipelines.csv │ │ │ │ ├── cicd_scopes.csv │ │ │ │ ├── cicd_tasks.csv │ │ │ │ ├── cicd_tasks_no_prod_regex.csv │ │ │ │ ├── issue_assignees.csv │ │ │ │ ├── issue_labels.csv │ │ │ │ ├── issues.csv │ │ │ │ ├── pull_request_comments.csv │ │ │ │ ├── pull_request_commits.csv │ │ │ │ ├── pull_request_labels.csv │ │ │ │ ├── pull_requests.csv │ │ │ │ └── repos.csv │ │ │ └── trigger_job_test.go │ │ ├── gitlab.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── account.go │ │ │ ├── assignee.go │ │ │ ├── commit.go │ │ │ ├── connection.go │ │ │ ├── deployment.go │ │ │ ├── issue.go │ │ │ ├── issue_assignee.go │ │ │ ├── issue_label.go │ │ │ ├── job.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20220714_add_init_tables.go │ │ │ │ ├── 20220729_add_gitlab_ci.go │ │ │ │ ├── 20220804_add_pipeline_id.go │ │ │ │ ├── 20220906_fix_duration_to_float8.go │ │ │ │ ├── 20220907_add_pipeline_projects_tables.go │ │ │ │ ├── 20221125_add_trasformation_rule_table.go │ │ │ │ ├── 20221230_add_std_type_to_gitlabissue.go │ │ │ │ ├── 20230210_add_is_detail_required.go │ │ │ │ ├── 20230322_add_connection_id_to_transformation_rules.go │ │ │ │ ├── 20230419_add_type_env_to_pipeline.go │ │ │ │ ├── 20230420_add_mr_commit_author_info.go │ │ │ │ ├── 20230529_scope_config.go │ │ │ │ ├── 20230606_add_issue_assignee.go │ │ │ │ ├── 20230625_add_mr_commitsha.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── 20230712_add_archived_to_tool_gitlab_projects.go │ │ │ │ ├── 20230926_add_deployment.go │ │ │ │ ├── 20231026_add_env_name_pattern_to_tool_gitlab_scope_configs.go │ │ │ │ ├── 20231129_add_queued_duration_to_pipeline_and_task.go │ │ │ │ ├── 20231207_modify_deployment_message_type.go │ │ │ │ ├── 20231220_add_created_user_at_tool_gitlab_account.go │ │ │ │ ├── 20231221_add_time_filed_to_pipeline_projects.go │ │ │ │ ├── 20240305_modify_deployment_commit_title_type.go │ │ │ │ ├── 20240411_add_web_url_to_pipeline.go │ │ │ │ ├── 20240531_add_mr_assignees.go │ │ │ │ ├── 20240605_add_mr_assignees_and_reviewers_primary_key.go │ │ │ │ ├── 20240813_change_issue_component_type.go │ │ │ │ ├── 20240904_remove_mr_review_fields.go │ │ │ │ ├── 20240906_add_source_to_pipelines.go │ │ │ │ ├── archived │ │ │ │ │ ├── account.go │ │ │ │ │ ├── assignee.go │ │ │ │ │ ├── commit.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── issue.go │ │ │ │ │ ├── issue_assignee.go │ │ │ │ │ ├── issue_label.go │ │ │ │ │ ├── mr.go │ │ │ │ │ ├── mr_comment.go │ │ │ │ │ ├── mr_commit.go │ │ │ │ │ ├── mr_label.go │ │ │ │ │ ├── mr_note.go │ │ │ │ │ ├── pipeline.go │ │ │ │ │ ├── project.go │ │ │ │ │ ├── project_commit.go │ │ │ │ │ ├── reviewer.go │ │ │ │ │ ├── tag.go │ │ │ │ │ └── transformation_rules.go │ │ │ │ └── register.go │ │ │ ├── mr.go │ │ │ ├── mr_comment.go │ │ │ ├── mr_commit.go │ │ │ ├── mr_label.go │ │ │ ├── mr_note.go │ │ │ ├── pipeline.go │ │ │ ├── project.go │ │ │ ├── project_commit.go │ │ │ ├── reviewer.go │ │ │ ├── scope_config.go │ │ │ └── tag.go │ │ └── tasks │ │ │ ├── account_collector.go │ │ │ ├── account_convertor.go │ │ │ ├── account_extractor.go │ │ │ ├── api_client.go │ │ │ ├── child_pipeline_collector.go │ │ │ ├── child_pipeline_extractor.go │ │ │ ├── deployment_collector.go │ │ │ ├── deployment_convertor.go │ │ │ ├── deployment_extractor.go │ │ │ ├── issue_assignee_convertor.go │ │ │ ├── issue_collector.go │ │ │ ├── issue_convertor.go │ │ │ ├── issue_extractor.go │ │ │ ├── issue_label_convertor.go │ │ │ ├── job_collector.go │ │ │ ├── job_convertor.go │ │ │ ├── job_extractor.go │ │ │ ├── mr_assignee_convertor.go │ │ │ ├── mr_collector.go │ │ │ ├── mr_commit_collector.go │ │ │ ├── mr_commit_convertor.go │ │ │ ├── mr_commit_extractor.go │ │ │ ├── mr_convertor.go │ │ │ ├── mr_detail_collector.go │ │ │ ├── mr_detail_extractor.go │ │ │ ├── mr_extractor.go │ │ │ ├── mr_label_convertor.go │ │ │ ├── mr_note_collector.go │ │ │ ├── mr_note_convertor.go │ │ │ ├── mr_note_extractor.go │ │ │ ├── mr_reviewer_convertor.go │ │ │ ├── pipeline_collector.go │ │ │ ├── pipeline_commit_convertor.go │ │ │ ├── pipeline_detail_collector.go │ │ │ ├── pipeline_detail_convertor.go │ │ │ ├── pipeline_detail_extractor.go │ │ │ ├── pipeline_extractor.go │ │ │ ├── project_convertor.go │ │ │ ├── register.go │ │ │ ├── shared.go │ │ │ ├── tag_collector.go │ │ │ ├── tag_extractor.go │ │ │ ├── task_data.go │ │ │ ├── trigger_job_collector.go │ │ │ └── trigger_job_extractor.go │ ├── icla │ │ ├── api │ │ │ └── swagger.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── committer.go │ │ │ └── migrationscripts │ │ │ │ ├── 20221021_add_icla_committer.go │ │ │ │ ├── archived │ │ │ │ └── committer.go │ │ │ │ └── register.go │ │ ├── plugin_main.go │ │ └── tasks │ │ │ ├── api_client.go │ │ │ ├── committer_collector.go │ │ │ ├── committer_extractor.go │ │ │ └── task_data.go │ ├── issue_trace │ │ ├── api │ │ │ └── init.go │ │ ├── e2e │ │ │ ├── general_issue_assignee_history_test.go │ │ │ ├── general_issue_status_history_test.go │ │ │ ├── meta.go │ │ │ ├── raw_tables │ │ │ │ ├── board_issues.csv │ │ │ │ ├── issue_changelogs.csv │ │ │ │ └── issues.csv │ │ │ └── snapshot_tables │ │ │ │ ├── issue_assignee_history.csv │ │ │ │ └── issue_status_history.csv │ │ ├── impl │ │ │ └── enricher.go │ │ ├── issue_trace.go │ │ ├── models │ │ │ ├── issue_assignee_history.go │ │ │ ├── issue_status_history.go │ │ │ └── migrationscripts │ │ │ │ └── 2024_05_30_new_issue_table.go │ │ ├── services │ │ │ └── query.go │ │ ├── tasks │ │ │ ├── issue_assignee_history_convertor.go │ │ │ ├── issue_status_history_convertor.go │ │ │ ├── issue_status_history_convertor_test.go │ │ │ └── task_data.go │ │ └── utils │ │ │ ├── array.go │ │ │ ├── constant.go │ │ │ └── context.go │ ├── jenkins │ │ ├── README.md │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── jobs.go │ │ │ ├── jobs_test.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ ├── scope_state_api.go │ │ │ └── swagger.go │ │ ├── e2e │ │ │ ├── builds_test.go │ │ │ ├── jobs_test.go │ │ │ ├── multibranch_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_jenkins_api_builds.csv │ │ │ │ ├── _raw_jenkins_api_builds_multibranch.csv │ │ │ │ ├── _raw_jenkins_api_jobs_multibranch.csv │ │ │ │ ├── _raw_jenkins_api_stages.csv │ │ │ │ ├── _raw_jenkins_api_stages_multibranch.csv │ │ │ │ ├── _tool_jenkins_builds_for_stages.csv │ │ │ │ ├── _tool_jenkins_jobs.csv │ │ │ │ ├── _tool_jenkins_jobs_multibranch.csv │ │ │ │ └── _tool_jenkins_stages.csv │ │ │ ├── snapshot_tables │ │ │ │ ├── _tool_jenkins_build_commits.csv │ │ │ │ ├── _tool_jenkins_build_commits_multibranch.csv │ │ │ │ ├── _tool_jenkins_builds.csv │ │ │ │ ├── _tool_jenkins_builds_after_enrich.csv │ │ │ │ ├── _tool_jenkins_builds_multibranch.csv │ │ │ │ ├── _tool_jenkins_builds_multibranch_after_enrich.csv │ │ │ │ ├── _tool_jenkins_stages.csv │ │ │ │ ├── _tool_jenkins_stages_multibranch.csv │ │ │ │ ├── cicd_pipeline_commits.csv │ │ │ │ ├── cicd_pipeline_commits_multibranch.csv │ │ │ │ ├── cicd_pipelines.csv │ │ │ │ ├── cicd_pipelines_multibranch.csv │ │ │ │ ├── cicd_scopes.csv │ │ │ │ ├── cicd_scopes_multibranch.csv │ │ │ │ ├── cicd_tasks.csv │ │ │ │ ├── cicd_tasks_after_stages.csv │ │ │ │ ├── cicd_tasks_after_stages_no_prod_regex.csv │ │ │ │ ├── cicd_tasks_multibranch.csv │ │ │ │ └── cicd_tasks_no_prod_regex.csv │ │ │ └── stages_test.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── jenkins.go │ │ ├── models │ │ │ ├── build.go │ │ │ ├── build_commit.go │ │ │ ├── connection.go │ │ │ ├── job.go │ │ │ ├── job_dag.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20220714_add_init_tables.go │ │ │ │ ├── 20220729_modify_all_entities.go │ │ │ │ ├── 20220916_modify_jenkins_build.go │ │ │ │ ├── 20221108_add_jobPath_for_builds.go │ │ │ │ ├── 20221108_add_job_fields.go │ │ │ │ ├── 20221110_change_index_of_job_path.go │ │ │ │ ├── 20221131_add_fullName_for_builds.go │ │ │ │ ├── 20221205_add_trasformation_rule_table.go │ │ │ │ ├── 20230322_add_connection_id_to_transformation_rules.go │ │ │ │ ├── 20230530_scope_config.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── 20240410_add_number_field_to_build_commits.go │ │ │ │ ├── archived │ │ │ │ │ ├── build.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── job.go │ │ │ │ │ └── transformation_rules.go │ │ │ │ └── register.go │ │ │ ├── response.go │ │ │ ├── scope_config.go │ │ │ └── stage.go │ │ └── tasks │ │ │ ├── api_client.go │ │ │ ├── build_cicd_convertor.go │ │ │ ├── build_collector.go │ │ │ ├── build_commit_convertor.go │ │ │ ├── build_extractor.go │ │ │ ├── build_stages_enricher.go │ │ │ ├── job_collector.go │ │ │ ├── job_convertor.go │ │ │ ├── job_extractor.go │ │ │ ├── shared.go │ │ │ ├── stage_collector.go │ │ │ ├── stage_convertor.go │ │ │ ├── stage_extractor.go │ │ │ └── task_data.go │ ├── jira │ │ ├── README.md │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ ├── scope_config_test.go │ │ │ ├── scope_state_api.go │ │ │ └── swagger.go │ │ ├── e2e │ │ │ ├── account_test.go │ │ │ ├── board_test.go │ │ │ ├── changelog_test.go │ │ │ ├── development_penal_test.go │ │ │ ├── epic_test.go │ │ │ ├── extract_issue_fields │ │ │ │ └── _tool_jira_issue_fields.csv │ │ │ ├── extract_issue_fields_test.go │ │ │ ├── issue_changelog_test.go │ │ │ ├── issue_changelogs │ │ │ │ ├── _raw_jira_api_issue_changelogs.csv │ │ │ │ ├── _tool_jira_accounts.csv │ │ │ │ ├── _tool_jira_issue_changelogs.csv │ │ │ │ └── _tool_jira_issue_fields.csv │ │ │ ├── issue_relationship_test.go │ │ │ ├── issue_repo_commit_test.go │ │ │ ├── issue_test.go │ │ │ ├── label_test.go │ │ │ ├── project_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_jira_api_development_panels.csv │ │ │ │ ├── _raw_jira_api_issue_changelogs.csv │ │ │ │ ├── _raw_jira_api_issue_fields.csv │ │ │ │ ├── _raw_jira_api_issue_relationships.csv │ │ │ │ ├── _raw_jira_api_issue_types.csv │ │ │ │ ├── _raw_jira_api_issues.csv │ │ │ │ ├── _raw_jira_api_issues_for_due_date.csv │ │ │ │ ├── _raw_jira_api_projects.csv │ │ │ │ ├── _raw_jira_api_remotelinks.csv │ │ │ │ ├── _raw_jira_api_sprints.csv │ │ │ │ ├── _raw_jira_api_status.csv │ │ │ │ ├── _raw_jira_api_users.csv │ │ │ │ ├── _raw_jira_api_worklogs.csv │ │ │ │ └── _raw_jira_external_epics.csv │ │ │ ├── remotelink_test.go │ │ │ ├── snapshot_tables │ │ │ │ ├── _tool_jira_accounts.csv │ │ │ │ ├── _tool_jira_accounts_changelog.csv │ │ │ │ ├── _tool_jira_board_issues.csv │ │ │ │ ├── _tool_jira_board_issues_for_ConvertIssueRepoCommits.csv │ │ │ │ ├── _tool_jira_board_issues_for_changelog.csv │ │ │ │ ├── _tool_jira_board_issues_for_external_epics.csv │ │ │ │ ├── _tool_jira_board_issues_for_label.csv │ │ │ │ ├── _tool_jira_board_issues_for_worklog.csv │ │ │ │ ├── _tool_jira_board_issues_relations.csv │ │ │ │ ├── _tool_jira_board_sprints.csv │ │ │ │ ├── _tool_jira_board_sprints_for_convertor.csv │ │ │ │ ├── _tool_jira_boards.csv │ │ │ │ ├── _tool_jira_issue_changelog_items.csv │ │ │ │ ├── _tool_jira_issue_changelog_items_extractor.csv │ │ │ │ ├── _tool_jira_issue_changelogs.csv │ │ │ │ ├── _tool_jira_issue_changelogs_extractor.csv │ │ │ │ ├── _tool_jira_issue_commits.csv │ │ │ │ ├── _tool_jira_issue_commits_dev_panel.csv │ │ │ │ ├── _tool_jira_issue_commits_for_ConvertIssueRepoCommits.csv │ │ │ │ ├── _tool_jira_issue_fields.csv │ │ │ │ ├── _tool_jira_issue_labels.csv │ │ │ │ ├── _tool_jira_issue_labels_for_convertor.csv │ │ │ │ ├── _tool_jira_issue_relationships.csv │ │ │ │ ├── _tool_jira_issue_types.csv │ │ │ │ ├── _tool_jira_issues.csv │ │ │ │ ├── _tool_jira_issues_for_due_date.csv │ │ │ │ ├── _tool_jira_issues_for_external_epics.csv │ │ │ │ ├── _tool_jira_projects.csv │ │ │ │ ├── _tool_jira_remotelinks.csv │ │ │ │ ├── _tool_jira_sprint_issues.csv │ │ │ │ ├── _tool_jira_sprints.csv │ │ │ │ ├── _tool_jira_sprints_for_convertor.csv │ │ │ │ ├── _tool_jira_statuses.csv │ │ │ │ ├── _tool_jira_statuses_for_changelog.csv │ │ │ │ ├── _tool_jira_worklogs.csv │ │ │ │ ├── _tool_jira_worklogs_for_convertor.csv │ │ │ │ ├── accounts.csv │ │ │ │ ├── board_issues.csv │ │ │ │ ├── board_sprints.csv │ │ │ │ ├── boards.csv │ │ │ │ ├── issue_assignees.csv │ │ │ │ ├── issue_changelogs.csv │ │ │ │ ├── issue_labels.csv │ │ │ │ ├── issue_relationships.csv │ │ │ │ ├── issue_repo_commits.csv │ │ │ │ ├── issues.csv │ │ │ │ ├── issues_for_due_date.csv │ │ │ │ ├── issues_with_no_mapping_subtask.csv │ │ │ │ ├── sprint_issues.csv │ │ │ │ ├── sprints.csv │ │ │ │ └── worklogs.csv │ │ │ ├── sprint_issue_test.go │ │ │ ├── sprint_test.go │ │ │ ├── status_test.go │ │ │ └── worklog_test.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── jira.go │ │ ├── models │ │ │ ├── account.go │ │ │ ├── board.go │ │ │ ├── board_issue.go │ │ │ ├── connection.go │ │ │ ├── issue.go │ │ │ ├── issue_changelog.go │ │ │ ├── issue_comment.go │ │ │ ├── issue_commit.go │ │ │ ├── issue_field.go │ │ │ ├── issue_label.go │ │ │ ├── issue_relationship.go │ │ │ ├── issue_type.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20220407_add_source_table.go │ │ │ │ ├── 20220505_rename_source_table.go │ │ │ │ ├── 20220716_add_init_tables.go │ │ │ │ ├── 20221116_add_trasformation_rule_table.go │ │ │ │ ├── 20221215_add_project_name.go │ │ │ │ ├── 20230129_add_multi_auth.go │ │ │ │ ├── 20230214_remove_issue_stdstorypoint.go │ │ │ │ ├── 20230223_add_repo_pattern.go │ │ │ │ ├── 20230322_add_connection_id_to_transformation_rules.go │ │ │ │ ├── 20230322_expand_remotelink_url.go │ │ │ │ ├── 20230412_add_changelog_total_field_to_issue.go │ │ │ │ ├── 20230412_desc_comment.go │ │ │ │ ├── 20230510_expand_remotelink_selfurl.go │ │ │ │ ├── 20230512_add_repo_url.go │ │ │ │ ├── 20230530_scope_config.go │ │ │ │ ├── 20230601_add_application_type.go │ │ │ │ ├── 20230609_clear_repo_pattern.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── 20230726_add_issue_relationship_table.go │ │ │ │ ├── 20230808_drop_issue_allfields.go │ │ │ │ ├── 20231016_modify_issue_relationship_primarykey.go │ │ │ │ ├── 20240103_add_component_to_issue.go │ │ │ │ ├── 20240111_add_filter_jql.go │ │ │ │ ├── 20240514_add_worklog_total_to_issue.go │ │ │ │ ├── 20240611_add_subtask_to_issue.go │ │ │ │ ├── 20240709_add_tmp_account_id_to_issue_changelog_item.go │ │ │ │ ├── 20240710_add_issue_field_table.go │ │ │ │ ├── 20240809_change_issue_component_type.go │ │ │ │ ├── 20240821_flush_issues_data.go │ │ │ │ ├── 20250305_add_due_date_config.go │ │ │ │ ├── 20250619_add_fix_versions_to_issue.go │ │ │ │ ├── archived │ │ │ │ │ ├── account.go │ │ │ │ │ ├── board.go │ │ │ │ │ ├── board_issue.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── issue.go │ │ │ │ │ ├── issue_changelog.go │ │ │ │ │ ├── issue_comment.go │ │ │ │ │ ├── issue_commit.go │ │ │ │ │ ├── issue_field.go │ │ │ │ │ ├── issue_label.go │ │ │ │ │ ├── issue_relationship.go │ │ │ │ │ ├── issue_type.go │ │ │ │ │ ├── project.go │ │ │ │ │ ├── remotelink.go │ │ │ │ │ ├── source.go │ │ │ │ │ ├── sprint.go │ │ │ │ │ ├── status.go │ │ │ │ │ ├── transformation_rule.go │ │ │ │ │ └── worklog.go │ │ │ │ └── register.go │ │ │ ├── project.go │ │ │ ├── remotelink.go │ │ │ ├── response_type.go │ │ │ ├── scope_config.go │ │ │ ├── sprint.go │ │ │ ├── status.go │ │ │ └── worklog.go │ │ └── tasks │ │ │ ├── account_collector.go │ │ │ ├── account_convertor.go │ │ │ ├── account_extractor.go │ │ │ ├── api_client.go │ │ │ ├── apiv2models │ │ │ ├── board.go │ │ │ ├── changelog.go │ │ │ ├── comment.go │ │ │ ├── development_penal.go │ │ │ ├── input.go │ │ │ ├── issue.go │ │ │ ├── project.go │ │ │ ├── remotelink.go │ │ │ ├── sprint.go │ │ │ ├── status.go │ │ │ ├── user.go │ │ │ ├── user_test.go │ │ │ └── worklog.go │ │ │ ├── board_convertor.go │ │ │ ├── board_filter_begin_collector.go │ │ │ ├── board_filter_end_collector.go │ │ │ ├── development_panel_collector.go │ │ │ ├── development_panel_extractor.go │ │ │ ├── epic_collector.go │ │ │ ├── epic_extractor.go │ │ │ ├── issue_changelog_collector.go │ │ │ ├── issue_changelog_convertor.go │ │ │ ├── issue_changelog_extractor.go │ │ │ ├── issue_collector.go │ │ │ ├── issue_collector_test.go │ │ │ ├── issue_comment_collector.go │ │ │ ├── issue_comment_convertor.go │ │ │ ├── issue_comment_extractor.go │ │ │ ├── issue_commit_convertor.go │ │ │ ├── issue_convertor.go │ │ │ ├── issue_convertor_test.go │ │ │ ├── issue_extractor.go │ │ │ ├── issue_field_collector.go │ │ │ ├── issue_field_extractor.go │ │ │ ├── issue_label_convertor.go │ │ │ ├── issue_relationship_convertor.go │ │ │ ├── issue_repo_commit_convertor.go │ │ │ ├── issue_type_collector.go │ │ │ ├── issue_type_extractor.go │ │ │ ├── project_collector.go │ │ │ ├── project_extractor.go │ │ │ ├── remotelink_collector.go │ │ │ ├── remotelink_extractor.go │ │ │ ├── shared.go │ │ │ ├── sprint_collector.go │ │ │ ├── sprint_convertor.go │ │ │ ├── sprint_extractor.go │ │ │ ├── sprint_issues_convertor.go │ │ │ ├── status_collector.go │ │ │ ├── status_extractor.go │ │ │ ├── task_data.go │ │ │ ├── worklog_collector.go │ │ │ ├── worklog_convertor.go │ │ │ └── worklog_extractor.go │ ├── linker │ │ ├── README.md │ │ ├── e2e │ │ │ ├── link_pr_and_issue_test.go │ │ │ └── snapshot_tables │ │ │ │ ├── board_issues.csv │ │ │ │ ├── issues.csv │ │ │ │ ├── project_mapping.csv │ │ │ │ ├── pull_request_issues.csv │ │ │ │ └── pull_requests.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── linker.go │ │ ├── models │ │ │ └── migrationscripts │ │ │ │ └── register.go │ │ └── tasks │ │ │ ├── link_pr_and_issue.go │ │ │ └── task_data.go │ ├── opsgenie │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_state_api.go │ │ │ └── swagger.go │ │ ├── e2e │ │ │ ├── incident_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_opsgenie_incidents.csv │ │ │ │ ├── _raw_opsgenie_teams.csv │ │ │ │ └── _raw_opsgenie_users.csv │ │ │ └── snapshot_tables │ │ │ │ ├── _tool_opsgenie_assignments.csv │ │ │ │ ├── _tool_opsgenie_incidents.csv │ │ │ │ ├── _tool_opsgenie_responders.csv │ │ │ │ ├── _tool_opsgenie_teams.csv │ │ │ │ ├── _tool_opsgenie_users.csv │ │ │ │ ├── issue_assignees.csv │ │ │ │ ├── issues.csv │ │ │ │ ├── teams.csv │ │ │ │ └── users.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── assignment.go │ │ │ ├── connection.go │ │ │ ├── incident.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20221115_add_init_tables.go │ │ │ │ ├── 20230123_add_connection_fields.go │ │ │ │ ├── 20230203_add_endpoint_proxy_to_conn.go │ │ │ │ ├── 20230203_add_transformation_rules.go │ │ │ │ ├── 20230531_scope_config.go │ │ │ │ ├── 20230605_remove_scope_config.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── 20231214_add_tool_opsgenie_scope_configs.go │ │ │ │ ├── 20240614_add_new_fields_to_tool_opsgenie_scope_configs.go │ │ │ │ ├── archived │ │ │ │ │ ├── assignment.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── incident.go │ │ │ │ │ ├── responder.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── team.go │ │ │ │ │ ├── transformation_rules.go │ │ │ │ │ └── user.go │ │ │ │ └── register.go │ │ │ ├── raw │ │ │ │ ├── incident.go │ │ │ │ ├── service.go │ │ │ │ ├── team.go │ │ │ │ └── user.go │ │ │ ├── responder.go │ │ │ ├── scope_config.go │ │ │ ├── service.go │ │ │ ├── team.go │ │ │ └── user.go │ │ ├── opsgenie.go │ │ └── tasks │ │ │ ├── incidents_collector.go │ │ │ ├── incidents_converter.go │ │ │ ├── incidents_extractor.go │ │ │ ├── service_converter.go │ │ │ ├── shared.go │ │ │ ├── task_data.go │ │ │ ├── teams_collector.go │ │ │ ├── teams_convertor.go │ │ │ ├── teams_extractor.go │ │ │ ├── users_collector.go │ │ │ ├── users_convertor.go │ │ │ └── users_extractor.go │ ├── org │ │ ├── api │ │ │ ├── handlers.go │ │ │ ├── project_mapping.go │ │ │ ├── store.go │ │ │ ├── team.go │ │ │ ├── types.go │ │ │ ├── user.go │ │ │ └── user_account_mapping.go │ │ ├── e2e │ │ │ ├── project_mapping_test.go │ │ │ ├── raw_tables │ │ │ │ ├── accounts.csv │ │ │ │ ├── user_accounts.csv │ │ │ │ └── users.csv │ │ │ ├── snapshot_tables │ │ │ │ ├── project_mapping.csv │ │ │ │ └── user_accounts.csv │ │ │ └── user_account_test.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── org.go │ │ └── tasks │ │ │ ├── project_mapping.go │ │ │ ├── task_data.go │ │ │ └── user_account.go │ ├── pagerduty │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_state_api.go │ │ │ └── swagger.go │ │ ├── e2e │ │ │ ├── incident_test.go │ │ │ ├── raw_tables │ │ │ │ └── _raw_pagerduty_incidents.csv │ │ │ └── snapshot_tables │ │ │ │ ├── _tool_pagerduty_assignments.csv │ │ │ │ ├── _tool_pagerduty_incidents.csv │ │ │ │ ├── _tool_pagerduty_users.csv │ │ │ │ ├── issue_assignees.csv │ │ │ │ └── issues.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── assignment.go │ │ │ ├── config.go │ │ │ ├── connection.go │ │ │ ├── incident.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20221115_add_init_tables.go │ │ │ │ ├── 20230123_add_connection_fields.go │ │ │ │ ├── 20230203_add_endpoint_proxy_to_conn.go │ │ │ │ ├── 20230203_add_transformation_rules.go │ │ │ │ ├── 20230531_scope_config.go │ │ │ │ ├── 20230605_remove_scope_config.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── 20230920_add_incident_priority.go │ │ │ │ ├── 20231214_add_tool_pagerduty_scope_configs.go │ │ │ │ ├── 20240614_add_new_fields_to_tool_pagerduty_scope_configs.go │ │ │ │ ├── archived │ │ │ │ │ ├── assignment.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── incident.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── transformation_rules.go │ │ │ │ │ └── user.go │ │ │ │ └── register.go │ │ │ ├── raw │ │ │ │ ├── incidents.go │ │ │ │ ├── notifications.go │ │ │ │ └── services.go │ │ │ ├── scope_config.go │ │ │ ├── service.go │ │ │ └── user.go │ │ ├── pager_duty.go │ │ └── tasks │ │ │ ├── incidents_collector.go │ │ │ ├── incidents_converter.go │ │ │ ├── incidents_extractor.go │ │ │ ├── service_converter.go │ │ │ └── task_data.go │ ├── q_dev │ │ ├── Q_DEV_deploy_guide.md │ │ ├── README.md │ │ ├── api │ │ │ ├── connection.go │ │ │ ├── connection_test.go │ │ │ ├── init.go │ │ │ └── test_connection.go │ │ ├── img.png │ │ ├── impl │ │ │ ├── impl.go │ │ │ └── impl_test.go │ │ ├── models │ │ │ ├── connection.go │ │ │ ├── connection_test.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20250319_init.go │ │ │ │ ├── 20250320_modify_file_meta.go │ │ │ │ ├── 20250623_add_display_name_fields.go │ │ │ │ ├── 20250709_delete_user_metrics.go │ │ │ │ ├── 20250710_add_missing_metrics.go │ │ │ │ ├── archived │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── s3_file_meta.go │ │ │ │ │ ├── user_data.go │ │ │ │ │ └── user_metrics.go │ │ │ │ └── register.go │ │ │ ├── s3_file_meta.go │ │ │ ├── user_data.go │ │ │ └── user_data_test.go │ │ ├── q_dev.go │ │ └── tasks │ │ │ ├── identity_client.go │ │ │ ├── identity_client_test.go │ │ │ ├── s3_client.go │ │ │ ├── s3_data_extractor.go │ │ │ ├── s3_data_extractor_test.go │ │ │ ├── s3_file_collector.go │ │ │ ├── task_data.go │ │ │ └── task_data_test.go │ ├── refdiff │ │ ├── README.md │ │ ├── api │ │ │ ├── connection.go │ │ │ └── swagger.go │ │ ├── e2e │ │ │ ├── deployment_commit_diff │ │ │ │ ├── _tool_refdiff_finished_commits_diffs.csv │ │ │ │ ├── cicd_deployment_commits.csv │ │ │ │ ├── commit_parents.csv │ │ │ │ ├── commits_diffs.csv │ │ │ │ ├── project_mapping.csv │ │ │ │ └── repo_commits.csv │ │ │ └── deployment_commit_diff_test.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── finished_commits_diffs.go │ │ │ └── refdiff_options.go │ │ ├── refdiff.go │ │ ├── tasks │ │ │ ├── commit_diff_calculator.go │ │ │ ├── deployment_commit_diff_calculator.go │ │ │ ├── ref_issue_diff_calculator.go │ │ │ ├── refdiff_task_data.go │ │ │ └── refs_pr_cherry_pick_calculator.go │ │ └── utils │ │ │ └── commit_node_graph.go │ ├── slack │ │ ├── README.md │ │ ├── api │ │ │ ├── connection.go │ │ │ ├── init.go │ │ │ └── swagger.go │ │ ├── apimodels │ │ │ ├── access_token.go │ │ │ └── im_result.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── channel.go │ │ │ ├── channel_message.go │ │ │ ├── connection.go │ │ │ └── migrationscripts │ │ │ │ ├── 20230421_add_init_tables.go │ │ │ │ ├── archived │ │ │ │ ├── channel.go │ │ │ │ ├── channel_message.go │ │ │ │ └── connection.go │ │ │ │ └── register.go │ │ ├── slack.go │ │ └── tasks │ │ │ ├── api_client.go │ │ │ ├── channel_collector.go │ │ │ ├── channel_extractor.go │ │ │ ├── channel_message_collector.go │ │ │ ├── channel_message_extractor.go │ │ │ ├── task_data.go │ │ │ ├── thread_collector.go │ │ │ └── thread_extractor.go │ ├── sonarqube │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_state_api.go │ │ │ └── swagger.go │ │ ├── e2e │ │ │ ├── account_test.go │ │ │ ├── filemetrics_test.go │ │ │ ├── hotspot_test.go │ │ │ ├── issue_test.go │ │ │ ├── project_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_sonarqube_api_accounts.csv │ │ │ │ ├── _raw_sonarqube_api_filemetrics.csv │ │ │ │ ├── _raw_sonarqube_api_filemetrics_additional.csv │ │ │ │ ├── _raw_sonarqube_api_hotspots.csv │ │ │ │ ├── _raw_sonarqube_api_issues.csv │ │ │ │ └── _tool_sonarqube_projects.csv │ │ │ └── snapshot_tables │ │ │ │ ├── _tool_sonarqube_accounts.csv │ │ │ │ ├── _tool_sonarqube_filemetrics.csv │ │ │ │ ├── _tool_sonarqube_hotspots.csv │ │ │ │ ├── _tool_sonarqube_issue_code_blocks.csv │ │ │ │ ├── _tool_sonarqube_issues.csv │ │ │ │ ├── accounts.csv │ │ │ │ ├── filemetrics.csv │ │ │ │ ├── issue_code_blocks.csv │ │ │ │ ├── issue_hotspots.csv │ │ │ │ ├── issues.csv │ │ │ │ └── projects.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── connection.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20230227_add_init_tables.go │ │ │ │ ├── 20230316_modify_character_set.go │ │ │ │ ├── 20230321_expend_project_key.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── 20230922_add_scope_config_id.go │ │ │ │ ├── 20230927_modify_file_metrics_key_length.go │ │ │ │ ├── 20231007_modify_component_length.go │ │ │ │ ├── 20231214_add_tool_sonarqube_scope_configs.go │ │ │ │ ├── 20240325_modify_commit_character_type.go │ │ │ │ ├── 20240508_modify_commit_character_type.go │ │ │ │ ├── 20240614_update_tool_sonarqube_scope_configs.go │ │ │ │ ├── 20240709_modify_name_length.go │ │ │ │ ├── 20240813_change_issue_component_type.go │ │ │ │ ├── 20240813_increase_project_key_length.go │ │ │ │ ├── 20240930_add_connection_orgs.go │ │ │ │ ├── 20241010_add_issue_impacts.go │ │ │ │ ├── 20250527_extend_field_size.go │ │ │ │ ├── archived │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── sonarqube_account.go │ │ │ │ │ ├── sonarqube_file_metrics.go │ │ │ │ │ ├── sonarqube_hotspot.go │ │ │ │ │ ├── sonarqube_issue.go │ │ │ │ │ ├── sonarqube_issue_code_block.go │ │ │ │ │ └── sonarqube_project.go │ │ │ │ └── register.go │ │ │ ├── sonarqube_account.go │ │ │ ├── sonarqube_file_metrics.go │ │ │ ├── sonarqube_hotspot.go │ │ │ ├── sonarqube_issue.go │ │ │ ├── sonarqube_issue_code_block.go │ │ │ └── sonarqube_project.go │ │ ├── sonarqube.go │ │ └── tasks │ │ │ ├── account_convertor.go │ │ │ ├── accounts_collector.go │ │ │ ├── accounts_extractor.go │ │ │ ├── api_client.go │ │ │ ├── filemetrics_additional_collector.go │ │ │ ├── filemetrics_additional_extractor.go │ │ │ ├── filemetrics_collector.go │ │ │ ├── filemetrics_convertor.go │ │ │ ├── filemetrics_extractor.go │ │ │ ├── hotspots_collector.go │ │ │ ├── hotspots_convertor.go │ │ │ ├── hotspots_extractor.go │ │ │ ├── issue_code_blocks_convertor.go │ │ │ ├── issue_impacts_convertor.go │ │ │ ├── issues_collector.go │ │ │ ├── issues_convertor.go │ │ │ ├── issues_extractor.go │ │ │ ├── projects_convertor.go │ │ │ ├── shared.go │ │ │ ├── shared_test.go │ │ │ └── task_data.go │ ├── starrocks │ │ ├── api │ │ │ └── connection.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── starrocks.go │ │ ├── tasks │ │ │ ├── task_data.go │ │ │ └── tasks.go │ │ └── utils │ │ │ └── utils.go │ ├── table_info_test.go │ ├── tapd │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ ├── scope_state_api.go │ │ │ └── swagger.go │ │ ├── e2e │ │ │ ├── bug_changelog_test.go │ │ │ ├── bug_custom_field_test.go │ │ │ ├── bugs_commit_test.go │ │ │ ├── bugs_test.go │ │ │ ├── iterations_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_tapd_api_bug_changelogs.csv │ │ │ │ ├── _raw_tapd_api_bug_commits.csv │ │ │ │ ├── _raw_tapd_api_bug_custom_fields.csv │ │ │ │ ├── _raw_tapd_api_bug_status.csv │ │ │ │ ├── _raw_tapd_api_bug_status_last_steps.csv │ │ │ │ ├── _raw_tapd_api_bugs.csv │ │ │ │ ├── _raw_tapd_api_bugs_for_due_date.csv │ │ │ │ ├── _raw_tapd_api_companies.csv │ │ │ │ ├── _raw_tapd_api_iterations.csv │ │ │ │ ├── _raw_tapd_api_stories.csv │ │ │ │ ├── _raw_tapd_api_stories_for_due_date.csv │ │ │ │ ├── _raw_tapd_api_story_bugs.csv │ │ │ │ ├── _raw_tapd_api_story_categories.csv │ │ │ │ ├── _raw_tapd_api_story_changelogs.csv │ │ │ │ ├── _raw_tapd_api_story_commits.csv │ │ │ │ ├── _raw_tapd_api_story_custom_fields.csv │ │ │ │ ├── _raw_tapd_api_story_status.csv │ │ │ │ ├── _raw_tapd_api_story_status_last_steps.csv │ │ │ │ ├── _raw_tapd_api_task_changelogs.csv │ │ │ │ ├── _raw_tapd_api_task_commits.csv │ │ │ │ ├── _raw_tapd_api_task_custom_fields.csv │ │ │ │ ├── _raw_tapd_api_tasks.csv │ │ │ │ ├── _raw_tapd_api_tasks_for_due_date.csv │ │ │ │ ├── _raw_tapd_api_workitem_types.csv │ │ │ │ └── _raw_tapd_api_worklogs.csv │ │ │ ├── snapshot_tables │ │ │ │ ├── _tool_tapd_bug_changelog_items.csv │ │ │ │ ├── _tool_tapd_bug_changelogs.csv │ │ │ │ ├── _tool_tapd_bug_commits.csv │ │ │ │ ├── _tool_tapd_bug_custom_fields.csv │ │ │ │ ├── _tool_tapd_bug_labels.csv │ │ │ │ ├── _tool_tapd_bug_labels_bug.csv │ │ │ │ ├── _tool_tapd_bug_statuses.csv │ │ │ │ ├── _tool_tapd_bugs.csv │ │ │ │ ├── _tool_tapd_bugs_for_due_date.csv │ │ │ │ ├── _tool_tapd_iteration_bugs.csv │ │ │ │ ├── _tool_tapd_iteration_stories.csv │ │ │ │ ├── _tool_tapd_iteration_tasks.csv │ │ │ │ ├── _tool_tapd_iterations.csv │ │ │ │ ├── _tool_tapd_stories.csv │ │ │ │ ├── _tool_tapd_stories_for_due_date.csv │ │ │ │ ├── _tool_tapd_story_bugs.csv │ │ │ │ ├── _tool_tapd_story_categories.csv │ │ │ │ ├── _tool_tapd_story_changelog_items.csv │ │ │ │ ├── _tool_tapd_story_changelogs.csv │ │ │ │ ├── _tool_tapd_story_commits.csv │ │ │ │ ├── _tool_tapd_story_custom_fields.csv │ │ │ │ ├── _tool_tapd_story_labels.csv │ │ │ │ ├── _tool_tapd_story_statuses.csv │ │ │ │ ├── _tool_tapd_task_changelog_items.csv │ │ │ │ ├── _tool_tapd_task_changelogs.csv │ │ │ │ ├── _tool_tapd_task_commits.csv │ │ │ │ ├── _tool_tapd_task_custom_fields.csv │ │ │ │ ├── _tool_tapd_task_labels.csv │ │ │ │ ├── _tool_tapd_tasks.csv │ │ │ │ ├── _tool_tapd_tasks_for_due_date.csv │ │ │ │ ├── _tool_tapd_workitem_types.csv │ │ │ │ ├── _tool_tapd_worklogs.csv │ │ │ │ ├── _tool_tapd_workspace_bugs.csv │ │ │ │ ├── _tool_tapd_workspace_iterations.csv │ │ │ │ ├── _tool_tapd_workspace_stories.csv │ │ │ │ ├── _tool_tapd_workspace_tasks.csv │ │ │ │ ├── _tool_tapd_workspaces.csv │ │ │ │ ├── board_issues_bug.csv │ │ │ │ ├── board_issues_story.csv │ │ │ │ ├── board_issues_task.csv │ │ │ │ ├── board_sprints.csv │ │ │ │ ├── boards.csv │ │ │ │ ├── bug_issue_assignees.csv │ │ │ │ ├── issue_changelogs_bug.csv │ │ │ │ ├── issue_changelogs_story.csv │ │ │ │ ├── issue_changelogs_task.csv │ │ │ │ ├── issue_commits_bug.csv │ │ │ │ ├── issue_commits_story.csv │ │ │ │ ├── issue_commits_task.csv │ │ │ │ ├── issue_labels_bug.csv │ │ │ │ ├── issue_labels_story.csv │ │ │ │ ├── issue_labels_task.csv │ │ │ │ ├── issue_repo_commits_bug.csv │ │ │ │ ├── issue_repo_commits_story.csv │ │ │ │ ├── issue_repo_commits_task.csv │ │ │ │ ├── issue_worklogs.csv │ │ │ │ ├── issues_bug.csv │ │ │ │ ├── issues_bug_for_due_date.csv │ │ │ │ ├── issues_story.csv │ │ │ │ ├── issues_story_for_due_date.csv │ │ │ │ ├── issues_task.csv │ │ │ │ ├── issues_task_for_due_date.csv │ │ │ │ ├── sprint_issues_bug.csv │ │ │ │ ├── sprint_issues_story.csv │ │ │ │ ├── sprint_issues_task.csv │ │ │ │ ├── sprints.csv │ │ │ │ ├── story_issue_assignees.csv │ │ │ │ └── task_issue_assignees.csv │ │ │ ├── stories_commit_test.go │ │ │ ├── stories_test.go │ │ │ ├── story_and_bug_status_test.go │ │ │ ├── story_bug_test.go │ │ │ ├── story_category_test.go │ │ │ ├── story_changelog_test.go │ │ │ ├── story_custom_field_test.go │ │ │ ├── task_changelog_test.go │ │ │ ├── task_custom_field_test.go │ │ │ ├── tasks_commit_test.go │ │ │ ├── tasks_test.go │ │ │ ├── workitem_type_test.go │ │ │ └── worklog_test.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── account.go │ │ │ ├── bug.go │ │ │ ├── bug_changelog.go │ │ │ ├── bug_commit.go │ │ │ ├── bug_custom_field.go │ │ │ ├── bug_custom_field_value.go │ │ │ ├── bug_label.go │ │ │ ├── bug_status.go │ │ │ ├── changelog.go │ │ │ ├── connection.go │ │ │ ├── input.go │ │ │ ├── iteration.go │ │ │ ├── iteration_bug.go │ │ │ ├── iteration_story.go │ │ │ ├── iteration_task.go │ │ │ ├── life_time.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20221109_add_init_tables.go │ │ │ │ ├── 20230115_encode_connection_token.go │ │ │ │ ├── 20230323_add_transformation.go │ │ │ │ ├── 20230330_delete_issue.go │ │ │ │ ├── 20230411_modify_custom_field_name.go │ │ │ │ ├── 20230412_add_custom_field_value.go │ │ │ │ ├── 20230531_scope_config.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── 20231026_add_connection_id_to_labels.go │ │ │ │ ├── 20240415_add_company_id_to_connection.go │ │ │ │ ├── 20250221_add_lifetime_tables.go │ │ │ │ ├── 20250305_update_scope_config.go │ │ │ │ ├── archived │ │ │ │ │ ├── account.go │ │ │ │ │ ├── bug.go │ │ │ │ │ ├── bug_changelog.go │ │ │ │ │ ├── bug_commit.go │ │ │ │ │ ├── bug_custom_field.go │ │ │ │ │ ├── bug_custom_field_value.go │ │ │ │ │ ├── bug_label.go │ │ │ │ │ ├── bug_status.go │ │ │ │ │ ├── issue.go │ │ │ │ │ ├── iteration.go │ │ │ │ │ ├── iteration_bug.go │ │ │ │ │ ├── iteration_story.go │ │ │ │ │ ├── iteration_task.go │ │ │ │ │ ├── story.go │ │ │ │ │ ├── story_bug.go │ │ │ │ │ ├── story_category.go │ │ │ │ │ ├── story_changelog.go │ │ │ │ │ ├── story_commits.go │ │ │ │ │ ├── story_custom_field.go │ │ │ │ │ ├── story_custom_field_value.go │ │ │ │ │ ├── story_label.go │ │ │ │ │ ├── story_status.go │ │ │ │ │ ├── sub_workspace.go │ │ │ │ │ ├── tapd_connection.go │ │ │ │ │ ├── task.go │ │ │ │ │ ├── task_changelog.go │ │ │ │ │ ├── task_commits.go │ │ │ │ │ ├── task_custom_field.go │ │ │ │ │ ├── task_custom_field_value.go │ │ │ │ │ ├── task_label.go │ │ │ │ │ ├── transformation_rule.go │ │ │ │ │ ├── workitem_type.go │ │ │ │ │ ├── worklog.go │ │ │ │ │ ├── workspace.go │ │ │ │ │ ├── workspace_bug.go │ │ │ │ │ ├── workspace_story.go │ │ │ │ │ └── workspace_task.go │ │ │ │ └── register.go │ │ │ ├── scope_config.go │ │ │ ├── story.go │ │ │ ├── story_bug.go │ │ │ ├── story_category.go │ │ │ ├── story_changelog.go │ │ │ ├── story_commits.go │ │ │ ├── story_custom_field.go │ │ │ ├── story_custom_field_value.go │ │ │ ├── story_label.go │ │ │ ├── story_status.go │ │ │ ├── task.go │ │ │ ├── task_changelog.go │ │ │ ├── task_commits.go │ │ │ ├── task_custom_field.go │ │ │ ├── task_custom_field_value.go │ │ │ ├── task_label.go │ │ │ ├── workitem_type.go │ │ │ ├── worklog.go │ │ │ ├── workspace.go │ │ │ ├── workspace_bug.go │ │ │ ├── workspace_story.go │ │ │ └── workspace_task.go │ │ ├── tapd.go │ │ └── tasks │ │ │ ├── account_collector.go │ │ │ ├── account_converter.go │ │ │ ├── account_extractor.go │ │ │ ├── api_client.go │ │ │ ├── bug_changelog_collector.go │ │ │ ├── bug_changelog_converter.go │ │ │ ├── bug_changelog_extractor.go │ │ │ ├── bug_collector.go │ │ │ ├── bug_commit_collector.go │ │ │ ├── bug_commit_converter.go │ │ │ ├── bug_commit_extractor.go │ │ │ ├── bug_converter.go │ │ │ ├── bug_custom_field_enricher.go │ │ │ ├── bug_custom_fields_collector.go │ │ │ ├── bug_custom_fields_extractor.go │ │ │ ├── bug_extractor.go │ │ │ ├── bug_label_convertor.go │ │ │ ├── bug_status_collector.go │ │ │ ├── bug_status_extractor.go │ │ │ ├── bug_status_last_step_collector.go │ │ │ ├── bug_status_last_step_enricher.go │ │ │ ├── iteration_collector.go │ │ │ ├── iteration_converter.go │ │ │ ├── iteration_extractor.go │ │ │ ├── shared.go │ │ │ ├── shared_test.go │ │ │ ├── story_bug_collector.go │ │ │ ├── story_bug_extractor.go │ │ │ ├── story_category_collector.go │ │ │ ├── story_category_extractor.go │ │ │ ├── story_changelog_collector.go │ │ │ ├── story_changelog_converter.go │ │ │ ├── story_changelog_extractor.go │ │ │ ├── story_collector.go │ │ │ ├── story_commit_collector.go │ │ │ ├── story_commit_converter.go │ │ │ ├── story_commit_extractor.go │ │ │ ├── story_converter.go │ │ │ ├── story_custom_field_enricher.go │ │ │ ├── story_custom_fields_collector.go │ │ │ ├── story_custom_fields_extractor.go │ │ │ ├── story_extractor.go │ │ │ ├── story_label_convertor.go │ │ │ ├── story_status_collector.go │ │ │ ├── story_status_extractor.go │ │ │ ├── story_status_last_step_collector.go │ │ │ ├── story_status_last_step_enricher.go │ │ │ ├── task_changelog_collector.go │ │ │ ├── task_changelog_converter.go │ │ │ ├── task_changelog_extractor.go │ │ │ ├── task_collector.go │ │ │ ├── task_commit_collector.go │ │ │ ├── task_commit_converter.go │ │ │ ├── task_commit_extractor.go │ │ │ ├── task_converter.go │ │ │ ├── task_custom_field_enricher.go │ │ │ ├── task_custom_fields_collector.go │ │ │ ├── task_custom_fields_extractor.go │ │ │ ├── task_data.go │ │ │ ├── task_extractor.go │ │ │ ├── task_label_convertor.go │ │ │ ├── workitem_lifetime_collector.go │ │ │ ├── workitem_lifetime_extractor.go │ │ │ ├── workitem_type_collector.go │ │ │ ├── workitem_type_extractor.go │ │ │ ├── worklog_collector.go │ │ │ ├── worklog_converter.go │ │ │ ├── worklog_extractor.go │ │ │ └── workspace_converter.go │ ├── teambition │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ └── scope_config_api.go │ │ ├── e2e │ │ │ ├── changelogs_test.go │ │ │ ├── projects_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_teambition_api_projects.csv │ │ │ │ ├── _raw_teambition_api_sprints.csv │ │ │ │ ├── _raw_teambition_api_task_activities.csv │ │ │ │ ├── _raw_teambition_api_task_flow_status.csv │ │ │ │ ├── _raw_teambition_api_task_scenarios.csv │ │ │ │ ├── _raw_teambition_api_task_tags.csv │ │ │ │ ├── _raw_teambition_api_task_worktime.csv │ │ │ │ └── _raw_teambition_api_tasks.csv │ │ │ ├── snapshot_tables │ │ │ │ ├── _tool_teambition_accounts.csv │ │ │ │ ├── _tool_teambition_projects.csv │ │ │ │ ├── _tool_teambition_sprints.csv │ │ │ │ ├── _tool_teambition_task_activities.csv │ │ │ │ ├── _tool_teambition_task_flow_status.csv │ │ │ │ ├── _tool_teambition_task_scenarios.csv │ │ │ │ ├── _tool_teambition_task_tag_tasks.csv │ │ │ │ ├── _tool_teambition_task_tags.csv │ │ │ │ ├── _tool_teambition_task_worktime.csv │ │ │ │ ├── _tool_teambition_tasks.csv │ │ │ │ ├── board_issues.csv │ │ │ │ ├── board_sprints.csv │ │ │ │ ├── boards.csv │ │ │ │ ├── issue_assignees.csv │ │ │ │ ├── issue_changelogs.csv │ │ │ │ ├── issue_comments.csv │ │ │ │ ├── issue_labels.csv │ │ │ │ ├── issue_worklogs.csv │ │ │ │ ├── issues.csv │ │ │ │ ├── sprint_issues.csv │ │ │ │ └── sprints.csv │ │ │ ├── sprint_test.go │ │ │ ├── task_comment_test.go │ │ │ ├── task_scenarios_test.go │ │ │ ├── task_tag_test.go │ │ │ ├── task_test.go │ │ │ ├── task_work_flow_status_test.go │ │ │ └── task_worktime_test.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── account.go │ │ │ ├── connection.go │ │ │ ├── input.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20230314_add_init_tables.go │ │ │ │ ├── 20231123_recreate_teambition_connections.go │ │ │ │ ├── 20240417_add_scope_config_id.go │ │ │ │ ├── 20250529_add_app_id_back.go │ │ │ │ ├── archived │ │ │ │ │ ├── account.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── input.go │ │ │ │ │ ├── project.go │ │ │ │ │ ├── sprint.go │ │ │ │ │ ├── task.go │ │ │ │ │ ├── task_activity.go │ │ │ │ │ ├── task_comment.go │ │ │ │ │ ├── task_flow_status.go │ │ │ │ │ ├── task_scenario.go │ │ │ │ │ ├── task_tag.go │ │ │ │ │ ├── task_tag_task.go │ │ │ │ │ └── task_worktime.go │ │ │ │ └── register.go │ │ │ ├── project.go │ │ │ ├── scope_config.go │ │ │ ├── sprint.go │ │ │ ├── task.go │ │ │ ├── task_activity.go │ │ │ ├── task_comment.go │ │ │ ├── task_flow_status.go │ │ │ ├── task_scenario.go │ │ │ ├── task_tag.go │ │ │ ├── task_tag_task.go │ │ │ └── task_worktime.go │ │ ├── tasks │ │ │ ├── account_collector.go │ │ │ ├── account_converter.go │ │ │ ├── account_extractor.go │ │ │ ├── api_client.go │ │ │ ├── project_collector.go │ │ │ ├── project_convertor.go │ │ │ ├── project_extractor.go │ │ │ ├── shared.go │ │ │ ├── sprint_collector.go │ │ │ ├── sprint_convertor.go │ │ │ ├── sprint_extractor.go │ │ │ ├── task_activity_collector.go │ │ │ ├── task_activity_extractor.go │ │ │ ├── task_changelog_converter.go │ │ │ ├── task_collector.go │ │ │ ├── task_comment_converter.go │ │ │ ├── task_converter.go │ │ │ ├── task_data.go │ │ │ ├── task_extractor.go │ │ │ ├── task_flow_status_collector.go │ │ │ ├── task_flow_status_extractor.go │ │ │ ├── task_scenario_collector.go │ │ │ ├── task_scenario_extractor.go │ │ │ ├── task_tag_collector.go │ │ │ ├── task_tag_extractor.go │ │ │ ├── task_tag_task_converter.go │ │ │ ├── task_worktime_collector.go │ │ │ ├── task_worktime_converter.go │ │ │ └── task_worktime_extractor.go │ │ └── teambition.go │ ├── testmo │ │ ├── api │ │ │ ├── blueprint.go │ │ │ ├── blueprint_v200.go │ │ │ ├── connection.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope.go │ │ │ ├── scope_config.go │ │ │ ├── scope_state_api.go │ │ │ └── swagger.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── automation_run.go │ │ │ ├── connection.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20240101_add_init_tables.go │ │ │ │ ├── 20250629_add_scope_config_id.go │ │ │ │ ├── 20250629_add_scope_config_id_to_projects.go │ │ │ │ ├── archived │ │ │ │ │ ├── automation_run.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── milestone.go │ │ │ │ │ ├── project.go │ │ │ │ │ ├── scope_config.go │ │ │ │ │ └── test.go │ │ │ │ └── register.go │ │ │ ├── milestone.go │ │ │ ├── project.go │ │ │ ├── raw │ │ │ │ └── project.go │ │ │ ├── scope_config.go │ │ │ └── test.go │ │ ├── tasks │ │ │ ├── api_client.go │ │ │ ├── automation_run_collector.go │ │ │ ├── automation_run_converter.go │ │ │ ├── automation_run_extractor.go │ │ │ ├── milestone_collector.go │ │ │ ├── milestone_extractor.go │ │ │ ├── project_collector.go │ │ │ ├── project_converter.go │ │ │ ├── project_extractor.go │ │ │ ├── shared.go │ │ │ ├── task_data.go │ │ │ ├── test_collector.go │ │ │ ├── test_converter.go │ │ │ └── test_extractor.go │ │ └── testmo.go │ ├── trello │ │ ├── README.md │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection_api.go │ │ │ ├── init.go │ │ │ ├── remote_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ └── swagger.go │ │ ├── e2e │ │ │ ├── card_test.go │ │ │ ├── check_items_test.go │ │ │ ├── labels_test.go │ │ │ ├── lists_test.go │ │ │ ├── members_test.go │ │ │ ├── raw_tables │ │ │ │ ├── _raw_trello_cards.csv │ │ │ │ ├── _raw_trello_check_items.csv │ │ │ │ ├── _raw_trello_labels.csv │ │ │ │ ├── _raw_trello_lists.csv │ │ │ │ └── _raw_trello_members.csv │ │ │ └── snapshot_tables │ │ │ │ ├── _tool_trello_cards.csv │ │ │ │ ├── _tool_trello_check_items.csv │ │ │ │ ├── _tool_trello_labels.csv │ │ │ │ ├── _tool_trello_lists.csv │ │ │ │ └── _tool_trello_members.csv │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── board.go │ │ │ ├── card.go │ │ │ ├── check_item.go │ │ │ ├── connection.go │ │ │ ├── label.go │ │ │ ├── list.go │ │ │ ├── member.go │ │ │ ├── migrationscripts │ │ │ │ ├── 20230305_add_init_tables.go │ │ │ │ ├── 20230322_add_connection_id_to_transformation_rules.go │ │ │ │ ├── 20230531_scope_config.go │ │ │ │ ├── 20230630_add_raw_param_table_for_scopes.go │ │ │ │ ├── archived │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── board.go │ │ │ │ │ ├── card.go │ │ │ │ │ ├── check_item.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── label.go │ │ │ │ │ ├── list.go │ │ │ │ │ ├── member.go │ │ │ │ │ └── transformation_rule.go │ │ │ │ └── register.go │ │ │ └── scope_config.go │ │ ├── tasks │ │ │ ├── api_client.go │ │ │ ├── card_collector.go │ │ │ ├── card_extractor.go │ │ │ ├── check_item_collector.go │ │ │ ├── check_item_extractor.go │ │ │ ├── label_collector.go │ │ │ ├── label_extractor.go │ │ │ ├── list_collector.go │ │ │ ├── list_extractor.go │ │ │ ├── member_collector.go │ │ │ ├── member_extractor.go │ │ │ └── task_data.go │ │ └── trello.go │ ├── webhook │ │ ├── api │ │ │ ├── blueprint_v200.go │ │ │ ├── connection.go │ │ │ ├── deployments.go │ │ │ ├── init.go │ │ │ ├── issues.go │ │ │ └── pull_requests.go │ │ ├── impl │ │ │ └── impl.go │ │ ├── models │ │ │ ├── connection.go │ │ │ └── migrationscripts │ │ │ │ ├── 20220908_add_init_tables.go │ │ │ │ ├── 20231116_add_api_keys.go │ │ │ │ ├── archived │ │ │ │ ├── api_keys.go │ │ │ │ └── connection.go │ │ │ │ └── register.go │ │ └── webhook.go │ └── zentao │ │ ├── api │ │ ├── blueprint_v200.go │ │ ├── connection_api.go │ │ ├── init.go │ │ ├── remote_api.go │ │ ├── scope_api.go │ │ ├── scope_config_api.go │ │ └── scope_state_api.go │ │ ├── e2e │ │ ├── account_test.go │ │ ├── bug_commits_test.go │ │ ├── bug_test.go │ │ ├── changelog_test.go │ │ ├── check_connection_test.go │ │ ├── execution_test.go │ │ ├── raw_tables │ │ │ ├── _raw_zentao_api_accounts.csv │ │ │ ├── _raw_zentao_api_bug_commits.csv │ │ │ ├── _raw_zentao_api_bug_repo_commits.csv │ │ │ ├── _raw_zentao_api_bugs.csv │ │ │ ├── _raw_zentao_api_bugs_for_due_date.csv │ │ │ ├── _raw_zentao_api_departments.csv │ │ │ ├── _raw_zentao_api_executions.csv │ │ │ ├── _raw_zentao_api_stories.csv │ │ │ ├── _raw_zentao_api_stories_for_due_date.csv │ │ │ ├── _raw_zentao_api_story_commits.csv │ │ │ ├── _raw_zentao_api_story_repo_commits.csv │ │ │ ├── _raw_zentao_api_task_commits.csv │ │ │ ├── _raw_zentao_api_task_repo_commits.csv │ │ │ ├── _raw_zentao_api_task_worklogs.csv │ │ │ ├── _raw_zentao_api_tasks.csv │ │ │ ├── _raw_zentao_api_tasks_for_due_date.csv │ │ │ ├── zt_action.csv │ │ │ └── zt_history.csv │ │ ├── snapshot_tables │ │ │ ├── _tool_zentao_accounts.csv │ │ │ ├── _tool_zentao_bug_commits.csv │ │ │ ├── _tool_zentao_bug_repo_commits.csv │ │ │ ├── _tool_zentao_bugs.csv │ │ │ ├── _tool_zentao_bugs_for_due_date.csv │ │ │ ├── _tool_zentao_changelog.csv │ │ │ ├── _tool_zentao_changelog_detail.csv │ │ │ ├── _tool_zentao_executions.csv │ │ │ ├── _tool_zentao_stories.csv │ │ │ ├── _tool_zentao_stories_for_due_date.csv │ │ │ ├── _tool_zentao_story_commits.csv │ │ │ ├── _tool_zentao_story_repo_commits.csv │ │ │ ├── _tool_zentao_task_commits.csv │ │ │ ├── _tool_zentao_task_repo_commits.csv │ │ │ ├── _tool_zentao_tasks.csv │ │ │ ├── _tool_zentao_tasks_for_due_date.csv │ │ │ ├── _tool_zentao_worklogs.csv │ │ │ ├── board_issues_bug.csv │ │ │ ├── board_issues_story.csv │ │ │ ├── board_issues_task.csv │ │ │ ├── bug_issue_assignees.csv │ │ │ ├── execution_board_sprint.csv │ │ │ ├── execution_sprint.csv │ │ │ ├── issue_bug_repo_commits.csv │ │ │ ├── issue_changelogs.csv │ │ │ ├── issue_story_repo_commits.csv │ │ │ ├── issue_task_repo_commits.csv │ │ │ ├── issue_worklogs.csv │ │ │ ├── issues_bug.csv │ │ │ ├── issues_bug_for_due_date.csv │ │ │ ├── issues_story.csv │ │ │ ├── issues_story_for_due_date.csv │ │ │ ├── issues_task.csv │ │ │ ├── issues_task_for_due_date.csv │ │ │ ├── story_issue_assignees.csv │ │ │ ├── task_issue_assignees.csv │ │ │ └── users.csv │ │ ├── story_commits_test.go │ │ ├── story_test.go │ │ ├── task_commits_test.go │ │ ├── task_test.go │ │ └── task_worklogs_test.go │ │ ├── impl │ │ └── impl.go │ │ ├── models │ │ ├── access_token.go │ │ ├── account.go │ │ ├── bug.go │ │ ├── bug_commits.go │ │ ├── bug_test.go │ │ ├── changelog.go │ │ ├── connection.go │ │ ├── department.go │ │ ├── execution.go │ │ ├── execution_stories.go │ │ ├── execution_summary.go │ │ ├── migrationscripts │ │ │ ├── 20221121_add_init_tables.go │ │ │ ├── 20230601_add_scope_config.go │ │ │ ├── 20230605_add_issue_repo_commits.go │ │ │ ├── 20230608_add_init_changelog_tables.go │ │ │ ├── 20230627_add_task_left.go │ │ │ ├── 20230630_add_raw_param_table_for_project_scopes.go │ │ │ ├── 20230705_add_execution_stories.go │ │ │ ├── 20230803_drop_total_real.go │ │ │ ├── 20250219_add_worklogs.go │ │ │ ├── 20250305_update_scope_config.go │ │ │ ├── archived │ │ │ │ ├── account.go │ │ │ │ ├── bug.go │ │ │ │ ├── bug_commits.go │ │ │ │ ├── changelog.go │ │ │ │ ├── connection.go │ │ │ │ ├── department.go │ │ │ │ ├── execution.go │ │ │ │ ├── execution_stories.go │ │ │ │ ├── execution_summary.go │ │ │ │ ├── product.go │ │ │ │ ├── product_summary.go │ │ │ │ ├── project.go │ │ │ │ ├── project_stories.go │ │ │ │ ├── scope_config.go │ │ │ │ ├── story.go │ │ │ │ ├── story_commits.go │ │ │ │ ├── task.go │ │ │ │ ├── task_commits.go │ │ │ │ └── worklog.go │ │ │ └── register.go │ │ ├── product.go │ │ ├── product_summary.go │ │ ├── project.go │ │ ├── project_stories.go │ │ ├── remote_db.go │ │ ├── scope_config.go │ │ ├── story.go │ │ ├── story_commits.go │ │ ├── task.go │ │ ├── task_commits.go │ │ └── worklog.go │ │ ├── tasks │ │ ├── account_collector.go │ │ ├── account_convertor.go │ │ ├── account_extractor.go │ │ ├── api_client.go │ │ ├── bug_collector.go │ │ ├── bug_commits_collector.go │ │ ├── bug_commits_extractor.go │ │ ├── bug_convertor.go │ │ ├── bug_extractor.go │ │ ├── bug_repo_commits_collector.go │ │ ├── bug_repo_commits_convertor.go │ │ ├── bug_repo_commits_dbget.go │ │ ├── bug_repo_commits_extractor.go │ │ ├── changelog_convertor.go │ │ ├── changelog_dbget.go │ │ ├── department_collector.go │ │ ├── department_extractor.go │ │ ├── execution_collector.go │ │ ├── execution_convertor.go │ │ ├── execution_extractor.go │ │ ├── execution_story_collector.go │ │ ├── execution_story_convertor.go │ │ ├── execution_summary_collector.go │ │ ├── execution_summary_dev_collector.go │ │ ├── execution_summary_dev_extractor.go │ │ ├── execution_summary_extractor.go │ │ ├── iterator.go │ │ ├── project_convertor.go │ │ ├── shared.go │ │ ├── shared_test.go │ │ ├── story_collector.go │ │ ├── story_commits_collector.go │ │ ├── story_commits_extractor.go │ │ ├── story_convertor.go │ │ ├── story_extractor.go │ │ ├── story_repo_commits_collector.go │ │ ├── story_repo_commits_convertor.go │ │ ├── story_repo_commits_dbget.go │ │ ├── story_repo_commits_extractor.go │ │ ├── task_collector.go │ │ ├── task_collector_test.go │ │ ├── task_commits_collector.go │ │ ├── task_commits_extractor.go │ │ ├── task_convertor.go │ │ ├── task_data.go │ │ ├── task_extractor.go │ │ ├── task_repo_commits_collector.go │ │ ├── task_repo_commits_convertor.go │ │ ├── task_repo_commits_dbget.go │ │ ├── task_repo_commits_extractor.go │ │ ├── task_worklog_collector.go │ │ ├── task_worklog_convertor.go │ │ └── task_worklog_extractor.go │ │ └── zentao.go ├── python │ ├── DevelopmentSetup.md │ ├── README.md │ ├── build.sh │ ├── plugins │ │ └── azuredevops │ │ │ ├── README.md │ │ │ ├── azuredevops │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── main.py │ │ │ ├── migrations.py │ │ │ ├── models.py │ │ │ └── streams │ │ │ │ ├── builds.py │ │ │ │ ├── jobs.py │ │ │ │ ├── pull_request_commits.py │ │ │ │ └── pull_requests.py │ │ │ ├── build.sh │ │ │ ├── poetry.lock │ │ │ ├── pyproject.toml │ │ │ ├── run.sh │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── plugin_test.py │ │ │ └── streams_test.py │ ├── pydevlake │ │ ├── README.md │ │ ├── poetry.lock │ │ ├── pydevlake │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── config.py │ │ │ ├── context.py │ │ │ ├── domain_layer │ │ │ │ ├── __init__.py │ │ │ │ ├── code.py │ │ │ │ ├── crossdomain.py │ │ │ │ └── devops.py │ │ │ ├── extractor.py │ │ │ ├── helpers │ │ │ │ └── debugger.py │ │ │ ├── ipc.py │ │ │ ├── logger.py │ │ │ ├── message.py │ │ │ ├── migration.py │ │ │ ├── model.py │ │ │ ├── model_info.py │ │ │ ├── pipeline_tasks.py │ │ │ ├── plugin.py │ │ │ ├── stream.py │ │ │ ├── subtasks.py │ │ │ └── testing │ │ │ │ ├── __init__.py │ │ │ │ └── testing.py │ │ ├── pyproject.toml │ │ └── tests │ │ │ ├── extractor_test.py │ │ │ ├── migration_test.py │ │ │ └── stream_test.py │ ├── requirements.txt │ ├── run_tests.sh │ └── test │ │ └── fakeplugin │ │ ├── build.sh │ │ ├── fakeplugin │ │ ├── __init__.py │ │ ├── main.py │ │ ├── migrations.py │ │ └── models.py │ │ ├── poetry.lock │ │ ├── pyproject.toml │ │ └── run.sh ├── resources │ ├── swagger │ │ └── open_api_spec.json.tmpl │ └── tap │ │ └── pagerduty.json ├── scripts │ ├── build-plugins.sh │ ├── build-python.sh │ ├── build-server.sh │ ├── docker │ │ └── mysql │ │ │ └── init-ds.sql │ ├── e2e-test-go-plugins.sh │ ├── e2e-test.sh │ ├── jira-api-benchmark.sh │ ├── swag.sh │ └── unit-test-go.sh ├── server │ ├── api │ │ ├── README.md │ │ ├── api.go │ │ ├── apikeys │ │ │ └── apikeys.go │ │ ├── blueprints │ │ │ └── blueprints.go │ │ ├── docs │ │ │ └── stub.go │ │ ├── domainlayer │ │ │ └── repos.go │ │ ├── middlewares.go │ │ ├── ping │ │ │ └── ping.go │ │ ├── pipelines │ │ │ └── pipelines.go │ │ ├── plugininfo │ │ │ └── plugininifo.go │ │ ├── project │ │ │ └── project.go │ │ ├── push │ │ │ ├── README.md │ │ │ └── push.go │ │ ├── router.go │ │ ├── shared │ │ │ ├── api_output.go │ │ │ └── gin_utils.go │ │ ├── store │ │ │ └── store.go │ │ ├── task │ │ │ └── task.go │ │ └── version │ │ │ └── version.go │ ├── main.go │ └── services │ │ ├── apikeys.go │ │ ├── base.go │ │ ├── blueprint.go │ │ ├── blueprint_makeplan_v200.go │ │ ├── blueprint_makeplan_v200_test.go │ │ ├── blueprint_test.go │ │ ├── dm_code.go │ │ ├── init.go │ │ ├── locking.go │ │ ├── pipeline.go │ │ ├── pipeline_helper.go │ │ ├── pipeline_notification.go │ │ ├── pipeline_notification_impl.go │ │ ├── pipeline_runner.go │ │ ├── pluginapi.go │ │ ├── probes.go │ │ ├── project.go │ │ ├── pushapi.go │ │ ├── remote │ │ ├── bridge │ │ │ ├── bridge.go │ │ │ ├── cmd.go │ │ │ ├── context.go │ │ │ └── returns.go │ │ ├── init.go │ │ ├── models │ │ │ ├── conversion.go │ │ │ ├── conversion_test.go │ │ │ ├── dynamic_domain_scopes.go │ │ │ ├── migration.go │ │ │ ├── migration_test.go │ │ │ ├── migrationscripts │ │ │ │ ├── azuredevops │ │ │ │ │ ├── azuredevops_20230714_add_raw_data_params.go │ │ │ │ │ ├── azuredevops_20230714_decrypt_azdo_fields.go │ │ │ │ │ └── azuredevops_20240201_unique_connection_name.go │ │ │ │ └── register.go │ │ │ ├── models.go │ │ │ └── plugin_remote.go │ │ ├── plugin │ │ │ ├── connection_api.go │ │ │ ├── default_api.go │ │ │ ├── doc │ │ │ │ └── open_api.go │ │ │ ├── init.go │ │ │ ├── plugin_extensions.go │ │ │ ├── plugin_impl.go │ │ │ ├── remote_scope_api.go │ │ │ ├── scope_api.go │ │ │ ├── scope_config_api.go │ │ │ └── scope_db_helper.go │ │ └── run │ │ │ └── run.go │ │ ├── store.go │ │ ├── task.go │ │ └── task_runner.go ├── swagger-stub.go └── test │ ├── Readme.md │ ├── e2e │ ├── manual │ │ ├── .gitignore │ │ ├── Readme.md │ │ ├── azuredevops │ │ │ ├── azure_test.go │ │ │ └── models.go │ │ ├── gitlab │ │ │ ├── gitlab_test.go │ │ │ └── models.go │ │ ├── pagerduty │ │ │ ├── models.go │ │ │ └── pagerduty_test.go │ │ └── testmo │ │ │ ├── models.go │ │ │ └── testmo_test.go │ ├── remote │ │ ├── docker-compose.test.yml │ │ ├── helper.go │ │ └── python_plugin_test.go │ └── services │ │ ├── pipeline_runner_test.go │ │ └── server_startup_test.go │ ├── helper │ ├── api.go │ ├── bootstrap.go │ ├── client.go │ ├── client_factory.go │ ├── db_selector.go │ ├── init.go │ ├── json_helper.go │ ├── models.go │ └── utils.go │ └── init.go ├── config-ui ├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .file-headerrc ├── .gitignore ├── .husky │ └── pre-commit ├── .prettierignore ├── .prettierrc.js ├── .yarn │ └── releases │ │ └── yarn-3.4.1.cjs ├── .yarnrc.yml ├── Dockerfile ├── README.md ├── env.example ├── index.html ├── nginx.conf ├── nginx.sh ├── package.json ├── public │ ├── favicon.ico │ └── onboard │ │ ├── assets │ │ ├── github │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ └── gitlab │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ ├── step-1 │ │ ├── azuredevops.md │ │ ├── bitbucket.md │ │ ├── default.md │ │ ├── github.md │ │ └── gitlab.md │ │ ├── step-2 │ │ ├── azuredevops.md │ │ ├── bitbucket.md │ │ ├── github.md │ │ └── gitlab.md │ │ └── step-3 │ │ ├── azuredevops.md │ │ ├── bitbucket.md │ │ ├── github.md │ │ └── gitlab.md ├── src │ ├── api │ │ ├── api-key │ │ │ └── index.ts │ │ ├── blueprint │ │ │ └── index.ts │ │ ├── connection │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── pipeline │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── plugin │ │ │ ├── index.ts │ │ │ ├── jira │ │ │ │ └── index.ts │ │ │ ├── tapd │ │ │ │ └── index.ts │ │ │ └── webhook │ │ │ │ └── index.ts │ │ ├── project │ │ │ └── index.ts │ │ ├── scope-config │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── scope │ │ │ └── index.ts │ │ ├── store │ │ │ └── index.ts │ │ └── task │ │ │ └── index.ts │ ├── app │ │ ├── routrer.tsx │ │ └── store.ts │ ├── components │ │ ├── action │ │ │ ├── copy-text │ │ │ │ └── index.tsx │ │ │ ├── external-link │ │ │ │ └── index.tsx │ │ │ ├── icon-button │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── block │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── index.ts │ │ ├── inspector │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── loading │ │ │ ├── index.ts │ │ │ ├── loading.tsx │ │ │ ├── page-loading.tsx │ │ │ └── styled.ts │ │ ├── logo │ │ │ └── index.tsx │ │ ├── markdown │ │ │ └── index.tsx │ │ ├── message │ │ │ └── index.tsx │ │ ├── no-data │ │ │ └── index.tsx │ │ ├── page-header │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ ├── tip-layout │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ └── tooltip │ │ │ ├── help-tooltip │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ └── text-tooltip │ │ │ └── index.tsx │ ├── config │ │ ├── cron.ts │ │ ├── endpoint.ts │ │ ├── entities.ts │ │ ├── index.ts │ │ └── paths.ts │ ├── features │ │ ├── connections │ │ │ ├── components │ │ │ │ ├── index.ts │ │ │ │ └── name.tsx │ │ │ ├── index.ts │ │ │ ├── slice.ts │ │ │ └── utils.ts │ │ └── index.ts │ ├── global.d.ts │ ├── hooks │ │ ├── extend-redux.ts │ │ ├── index.ts │ │ ├── use-auto-refresh.ts │ │ ├── use-refresh-data.ts │ │ └── user-proxy-prefix.ts │ ├── images │ │ ├── icons │ │ │ ├── api.svg │ │ │ ├── clear.svg │ │ │ ├── dashboard.svg │ │ │ ├── file.svg │ │ │ ├── github.svg │ │ │ └── slack.svg │ │ ├── jira-issue-tips.png │ │ ├── logo-horizontal.svg │ │ ├── logo.svg │ │ ├── no-data.svg │ │ ├── no-webhook.svg │ │ └── plugin-icon.svg │ ├── index.css │ ├── main.tsx │ ├── plugins │ │ ├── components │ │ │ ├── connection-form │ │ │ │ ├── fields │ │ │ │ │ ├── app-id.tsx │ │ │ │ │ ├── endpoint.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── name.tsx │ │ │ │ │ ├── password.tsx │ │ │ │ │ ├── proxy.tsx │ │ │ │ │ ├── rate-limit.tsx │ │ │ │ │ ├── secret-key.tsx │ │ │ │ │ ├── styled.ts │ │ │ │ │ ├── token.tsx │ │ │ │ │ └── username.tsx │ │ │ │ └── index.tsx │ │ │ ├── connection-list │ │ │ │ └── index.tsx │ │ │ ├── connection-select │ │ │ │ └── index.tsx │ │ │ ├── connection-status │ │ │ │ └── index.tsx │ │ │ ├── data-scope-remote │ │ │ │ ├── data-scope-remote.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── search-local.tsx │ │ │ │ ├── search-remote.tsx │ │ │ │ ├── styled.ts │ │ │ │ └── types.ts │ │ │ ├── data-scope-select │ │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ ├── plugin-name │ │ │ │ └── index.tsx │ │ │ ├── scope-config-form │ │ │ │ ├── index.tsx │ │ │ │ └── styled.ts │ │ │ ├── scope-config-select │ │ │ │ └── index.tsx │ │ │ └── scope-config │ │ │ │ └── index.tsx │ │ ├── index.ts │ │ ├── register │ │ │ ├── azure │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── connection-fields │ │ │ │ │ ├── base-url.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── organization.tsx │ │ │ │ │ └── styled.ts │ │ │ │ ├── index.ts │ │ │ │ └── transformation.tsx │ │ │ ├── bamboo │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── styled.ts │ │ │ │ └── transformation.tsx │ │ │ ├── bitbucket-server │ │ │ │ ├── assets │ │ │ │ │ ├── bitbucket-server-example.jpg │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── index.ts │ │ │ │ └── transformation.tsx │ │ │ ├── bitbucket │ │ │ │ ├── assets │ │ │ │ │ ├── bitbucket-example.jpg │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── index.ts │ │ │ │ └── transformation.tsx │ │ │ ├── circleci │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── index.ts │ │ │ │ └── transformation.tsx │ │ │ ├── github │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── connection-fields │ │ │ │ │ ├── authentication.tsx │ │ │ │ │ ├── githubapp.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── styled.ts │ │ │ │ │ └── token.tsx │ │ │ │ ├── index.ts │ │ │ │ └── transformation.tsx │ │ │ ├── gitlab │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── index.ts │ │ │ │ └── transformation.tsx │ │ │ ├── index.ts │ │ │ ├── jenkins │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── index.ts │ │ │ │ └── transformation.tsx │ │ │ ├── jira │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── connection-fields │ │ │ │ │ ├── auth.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styled.ts │ │ │ │ ├── index.ts │ │ │ │ ├── transformation-fields │ │ │ │ │ ├── cross-domain.tsx │ │ │ │ │ ├── dev-panel.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── remote-link.tsx │ │ │ │ │ └── styled.ts │ │ │ │ └── transformation.tsx │ │ │ ├── opsgenie │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── connection-fields │ │ │ │ │ ├── endpoint.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styled.ts │ │ │ │ └── index.ts │ │ │ ├── pagerduty │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ └── index.ts │ │ │ ├── sonarqube │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── connection-fields │ │ │ │ │ └── organization.tsx │ │ │ │ └── index.ts │ │ │ ├── tapd │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── connection-fields │ │ │ │ │ ├── company-id.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── transformation.tsx │ │ │ ├── teambition │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── connection-fields │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── tenant-id.tsx │ │ │ │ │ └── tenant-type.tsx │ │ │ │ └── index.ts │ │ │ ├── testmo │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ └── index.ts │ │ │ ├── webhook │ │ │ │ ├── assets │ │ │ │ │ └── icon.svg │ │ │ │ ├── components │ │ │ │ │ ├── create-dialog.tsx │ │ │ │ │ ├── delete-dialog.tsx │ │ │ │ │ ├── edit-dialog.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── selector-dialog.tsx │ │ │ │ │ ├── utils.ts │ │ │ │ │ └── view-dialog.tsx │ │ │ │ ├── config.tsx │ │ │ │ ├── connection.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── styled.ts │ │ │ │ └── types.ts │ │ │ └── zentao │ │ │ │ ├── assets │ │ │ │ └── icon.svg │ │ │ │ ├── config.tsx │ │ │ │ ├── connection-fields │ │ │ │ ├── db-url.tsx │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ └── utils.ts │ ├── release │ │ ├── index.ts │ │ ├── stable.ts │ │ ├── v0.18.ts │ │ ├── v0.19.ts │ │ ├── v0.20.ts │ │ ├── v0.21.ts │ │ └── v1.0.ts │ ├── routes │ │ ├── api-keys │ │ │ ├── api-keys.tsx │ │ │ ├── constant.ts │ │ │ ├── index.ts │ │ │ └── styled.ts │ │ ├── blueprint │ │ │ ├── connection-detail │ │ │ │ ├── index.tsx │ │ │ │ ├── styled.ts │ │ │ │ └── table.tsx │ │ │ ├── detail │ │ │ │ ├── blueprint-detail-page.tsx │ │ │ │ ├── blueprint-detail.tsx │ │ │ │ ├── components │ │ │ │ │ ├── add-connection-dialog │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── advanced-editor │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ ├── customize.ts │ │ │ │ │ │ │ ├── dbt.ts │ │ │ │ │ │ │ ├── feishu.ts │ │ │ │ │ │ │ ├── general.ts │ │ │ │ │ │ │ ├── gitextractor.ts │ │ │ │ │ │ │ ├── github.ts │ │ │ │ │ │ │ ├── gitlab.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── jenkins.ts │ │ │ │ │ │ │ ├── jira.ts │ │ │ │ │ │ │ ├── refdiff.ts │ │ │ │ │ │ │ ├── starrocks.ts │ │ │ │ │ │ │ ├── tapd.ts │ │ │ │ │ │ │ └── zentao.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sync-policy │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styled.ts │ │ │ │ │ ├── update-name-dialog │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── update-policy-dialog │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── configuration-panel.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── status-panel.tsx │ │ │ │ └── styled.ts │ │ │ ├── home │ │ │ │ ├── index.tsx │ │ │ │ └── styled.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── connection │ │ │ ├── connection.tsx │ │ │ ├── connections.tsx │ │ │ ├── index.ts │ │ │ └── styled.ts │ │ ├── db-migrate │ │ │ └── index.tsx │ │ ├── error │ │ │ └── index.tsx │ │ ├── index.ts │ │ ├── layout │ │ │ ├── config.tsx │ │ │ ├── index.ts │ │ │ ├── layout.tsx │ │ │ └── loader.ts │ │ ├── not-found │ │ │ └── index.tsx │ │ ├── onboard │ │ │ ├── components │ │ │ │ ├── card.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── logs.tsx │ │ │ │ └── tour.tsx │ │ │ ├── context.tsx │ │ │ ├── index.tsx │ │ │ ├── step-0.tsx │ │ │ ├── step-1.tsx │ │ │ ├── step-2.tsx │ │ │ ├── step-3.tsx │ │ │ ├── step-4.tsx │ │ │ └── styled.ts │ │ ├── pipeline │ │ │ ├── components │ │ │ │ ├── duration.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── info.tsx │ │ │ │ ├── status.tsx │ │ │ │ ├── table.tsx │ │ │ │ ├── task.tsx │ │ │ │ └── tasks.tsx │ │ │ ├── constant.tsx │ │ │ ├── index.ts │ │ │ ├── pipeline.tsx │ │ │ ├── pipelines.tsx │ │ │ └── styled.ts │ │ └── project │ │ │ ├── detail │ │ │ ├── index.tsx │ │ │ ├── settings-panel.tsx │ │ │ ├── styled.ts │ │ │ └── webhooks-panel.tsx │ │ │ ├── home │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ └── utils.ts │ ├── types │ │ ├── api-key.ts │ │ ├── blueprint.ts │ │ ├── connection.ts │ │ ├── data-scope.ts │ │ ├── index.ts │ │ ├── pipeline.ts │ │ ├── plugin.ts │ │ ├── project.ts │ │ ├── scope-config.ts │ │ ├── status.ts │ │ ├── task.ts │ │ └── webhook.ts │ ├── utils │ │ ├── index.ts │ │ ├── operator.ts │ │ ├── request.ts │ │ └── time.ts │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── devops ├── deployment │ ├── k8s │ │ └── k8s-deploy.yaml │ └── temporal │ │ └── docker-compose-temporal.yml ├── docker │ ├── alpine-dbt │ │ ├── Dockerfile │ │ └── README.md │ └── lake-builder │ │ ├── Dockerfile │ │ └── README.md └── releases │ ├── lake-v0.10.0-beta1 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.10.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.10.1 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.11.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.12.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.13.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.14.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.15.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.16.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.17.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.18.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.19.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.20.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.21.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.7.0 │ ├── docker-compose.yml │ └── env.example │ ├── lake-v0.8.0 │ ├── docker-compose.yml │ └── env.example │ └── lake-v0.9.0 │ ├── docker-compose.yml │ └── env.example ├── docker-compose-dev.yml ├── docker-compose.datasources.yml ├── env.example ├── grafana ├── Dockerfile ├── _archive │ ├── Daily_Needs_To_Be_Improved.json │ ├── DataSourceSpecificDashboardsHomepage.json │ ├── DeliveryCapability(RequireJenkinsData).json │ ├── DeliveryCost(RequireGitlabData).json │ ├── DeliveryQuality(RequireJiraAndGitlabData).json │ ├── DeliveryVelocity(RequireJiraAndGitlabData).json │ ├── EeGitHubReleaseQualityAndContributionAnalysis.json │ ├── GithubDomainLayerOnly.json │ ├── Gitlab.json │ ├── Jenkins.json │ └── UserValueSpecificDashboardsHomepage.json ├── dashboards │ ├── AzureDevOps.json │ ├── Bamboo.json │ ├── BitBucket.json │ ├── CircleCI.json │ ├── ComponentAndFileLevelMetrics.json │ ├── ContributorExperience.json │ ├── DORA.json │ ├── DORAByTeam.json │ ├── DORADebug.json │ ├── DORADetails-ChangeFailureRate.json │ ├── DORADetails-DeploymentFrequency.json │ ├── DORADetails-FailedDeploymentRecoveryTime.json │ ├── DORADetails-LeadTimeforChanges.json │ ├── DORADetails-TimetoRestoreService.json │ ├── DemoAverageRequirementLeadTimeByAssignee.json │ ├── DemoCommitCountByAuthor.json │ ├── DemoDetailedBugInfo.json │ ├── DemoHomepage.json │ ├── DemoHowFastDoWeRespondToCustomerRequirements.json │ ├── DemoIsThisMonthMoreProductiveThanLast.json │ ├── DemoWasOurQualityImprovedOrNot.json │ ├── EngineeringOverview.json │ ├── EngineeringThroughputAndCycleTime.json │ ├── EngineeringThroughputAndCycleTimeTeamView.json │ ├── GitHub.json │ ├── GithubReleaseQualityAndContributionAnalysis.json │ ├── Gitlab.json │ ├── Homepage.json │ ├── Jenkins.json │ ├── Jira.json │ ├── Opsgenie.json │ ├── PagerDuty.json │ ├── SonarQubeCloud.json │ ├── Sonarqube.json │ ├── TAPD.json │ ├── Teambition.json │ ├── Testmo.json │ ├── WeeklyBugRetro.json │ ├── WeeklyCommunityRetro.json │ ├── WorkLogs.json │ ├── Zentao.json │ └── qdev_user_data.json ├── img │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── grafana_icon.svg │ ├── logo.png │ └── more.png └── provisioning │ ├── dashboards │ └── dashboard.yml │ └── datasources │ └── datasource.yml └── resources └── img ├── logo.svg ├── userflow1.svg ├── userflow2.svg ├── userflow3.png ├── userflow4.png └── wechat_community_barcode.png /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | config-ui/ 3 | grafana/ 4 | releases/ 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/ISSUE_TEMPLATE/refactor.md -------------------------------------------------------------------------------- /.github/actions/auto-cherry-pick/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/actions/auto-cherry-pick/action.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/NOTICE-year-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/NOTICE-year-check.yml -------------------------------------------------------------------------------- /.github/workflows/asf-header-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/asf-header-check.yml -------------------------------------------------------------------------------- /.github/workflows/auto-cherry-pick.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/auto-cherry-pick.yml -------------------------------------------------------------------------------- /.github/workflows/build-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/build-builder.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/commit-msg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/commit-msg.yml -------------------------------------------------------------------------------- /.github/workflows/config-ui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/config-ui.yml -------------------------------------------------------------------------------- /.github/workflows/go-checklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/go-checklist.json -------------------------------------------------------------------------------- /.github/workflows/go-checklist.yml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/go-checklist.yml.bak -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/migration-script-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/migration-script-lint.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/test-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.github/workflows/yaml-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.gitignore -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /DISCLAIMER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/DISCLAIMER -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/README.md -------------------------------------------------------------------------------- /backend/.golangci-goheader.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/.golangci-goheader.template -------------------------------------------------------------------------------- /backend/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/.golangci.yaml -------------------------------------------------------------------------------- /backend/DevelopmentManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/DevelopmentManual.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/Makefile -------------------------------------------------------------------------------- /backend/core/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/config/config.go -------------------------------------------------------------------------------- /backend/core/config/config_viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/config/config_viper.go -------------------------------------------------------------------------------- /backend/core/config/config_viper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/config/config_viper_test.go -------------------------------------------------------------------------------- /backend/core/context/basic_res.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/context/basic_res.go -------------------------------------------------------------------------------- /backend/core/dal/dal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/dal/dal.go -------------------------------------------------------------------------------- /backend/core/domain_tables_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/domain_tables_info_test.go -------------------------------------------------------------------------------- /backend/core/errors/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/errors/converter.go -------------------------------------------------------------------------------- /backend/core/errors/crdb_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/errors/crdb_impl.go -------------------------------------------------------------------------------- /backend/core/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/errors/errors.go -------------------------------------------------------------------------------- /backend/core/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/errors/errors_test.go -------------------------------------------------------------------------------- /backend/core/errors/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/errors/map.go -------------------------------------------------------------------------------- /backend/core/errors/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/errors/message.go -------------------------------------------------------------------------------- /backend/core/errors/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/errors/types.go -------------------------------------------------------------------------------- /backend/core/errors/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/errors/util.go -------------------------------------------------------------------------------- /backend/core/errors/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/errors/util_test.go -------------------------------------------------------------------------------- /backend/core/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/log/logger.go -------------------------------------------------------------------------------- /backend/core/migration/linter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/migration/linter/main.go -------------------------------------------------------------------------------- /backend/core/migration/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/migration/migrator.go -------------------------------------------------------------------------------- /backend/core/migration/migrator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/migration/migrator_test.go -------------------------------------------------------------------------------- /backend/core/migration/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/migration/models.go -------------------------------------------------------------------------------- /backend/core/models/api_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/api_key.go -------------------------------------------------------------------------------- /backend/core/models/blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/blueprint.go -------------------------------------------------------------------------------- /backend/core/models/collector_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/collector_state.go -------------------------------------------------------------------------------- /backend/core/models/common/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/common/base.go -------------------------------------------------------------------------------- /backend/core/models/common/cst_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/common/cst_time.go -------------------------------------------------------------------------------- /backend/core/models/common/cst_time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/common/cst_time_test.go -------------------------------------------------------------------------------- /backend/core/models/common/iso8601time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/common/iso8601time.go -------------------------------------------------------------------------------- /backend/core/models/common/string_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/common/string_int64.go -------------------------------------------------------------------------------- /backend/core/models/domainlayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/domainlayer/README.md -------------------------------------------------------------------------------- /backend/core/models/domainlayer/code/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/domainlayer/code/ref.go -------------------------------------------------------------------------------- /backend/core/models/dynamic_tabler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/dynamic_tabler.go -------------------------------------------------------------------------------- /backend/core/models/locking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/locking.go -------------------------------------------------------------------------------- /backend/core/models/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/notification.go -------------------------------------------------------------------------------- /backend/core/models/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/pipeline.go -------------------------------------------------------------------------------- /backend/core/models/pipeline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/pipeline_test.go -------------------------------------------------------------------------------- /backend/core/models/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/project.go -------------------------------------------------------------------------------- /backend/core/models/subtask_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/subtask_state.go -------------------------------------------------------------------------------- /backend/core/models/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/models/task.go -------------------------------------------------------------------------------- /backend/core/plugin/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/api_client.go -------------------------------------------------------------------------------- /backend/core/plugin/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/hub.go -------------------------------------------------------------------------------- /backend/core/plugin/hub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/hub_test.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_api.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_blueprint.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_datasource.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_init.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_meta.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_metric.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_migration.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_model.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_openapi_spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_openapi_spec.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_task.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_utils.go -------------------------------------------------------------------------------- /backend/core/plugin/plugin_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/plugin/plugin_utils_test.go -------------------------------------------------------------------------------- /backend/core/runner/basic_res.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/runner/basic_res.go -------------------------------------------------------------------------------- /backend/core/runner/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/runner/db.go -------------------------------------------------------------------------------- /backend/core/runner/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/runner/db_test.go -------------------------------------------------------------------------------- /backend/core/runner/directrun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/runner/directrun.go -------------------------------------------------------------------------------- /backend/core/runner/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/runner/loader.go -------------------------------------------------------------------------------- /backend/core/runner/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/runner/migration.go -------------------------------------------------------------------------------- /backend/core/runner/run_pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/runner/run_pipeline.go -------------------------------------------------------------------------------- /backend/core/runner/run_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/runner/run_task.go -------------------------------------------------------------------------------- /backend/core/utils/callframes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/callframes.go -------------------------------------------------------------------------------- /backend/core/utils/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/io.go -------------------------------------------------------------------------------- /backend/core/utils/ipc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/ipc.go -------------------------------------------------------------------------------- /backend/core/utils/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/json.go -------------------------------------------------------------------------------- /backend/core/utils/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/json_test.go -------------------------------------------------------------------------------- /backend/core/utils/network_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/network_helper.go -------------------------------------------------------------------------------- /backend/core/utils/network_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/network_helper_test.go -------------------------------------------------------------------------------- /backend/core/utils/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/slice.go -------------------------------------------------------------------------------- /backend/core/utils/slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/slice_test.go -------------------------------------------------------------------------------- /backend/core/utils/strconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/strconv.go -------------------------------------------------------------------------------- /backend/core/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/strings.go -------------------------------------------------------------------------------- /backend/core/utils/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/strings_test.go -------------------------------------------------------------------------------- /backend/core/utils/structfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/structfield.go -------------------------------------------------------------------------------- /backend/core/utils/structfield_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/structfield_test.go -------------------------------------------------------------------------------- /backend/core/utils/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/utils/token.go -------------------------------------------------------------------------------- /backend/core/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/core/version/version.go -------------------------------------------------------------------------------- /backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/go.mod -------------------------------------------------------------------------------- /backend/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/go.sum -------------------------------------------------------------------------------- /backend/helpers/dbhelper/txhelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/dbhelper/txhelper.go -------------------------------------------------------------------------------- /backend/helpers/e2ehelper/nullable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/e2ehelper/nullable_test.go -------------------------------------------------------------------------------- /backend/helpers/pluginhelper/api/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/pluginhelper/api/list.go -------------------------------------------------------------------------------- /backend/helpers/pluginhelper/api/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/pluginhelper/api/queue.go -------------------------------------------------------------------------------- /backend/helpers/srvhelper/dsrefs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/srvhelper/dsrefs.go -------------------------------------------------------------------------------- /backend/helpers/srvhelper/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/srvhelper/pagination.go -------------------------------------------------------------------------------- /backend/helpers/unithelper/dummy_baesres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/unithelper/dummy_baesres.go -------------------------------------------------------------------------------- /backend/helpers/unithelper/dummy_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/unithelper/dummy_logger.go -------------------------------------------------------------------------------- /backend/helpers/utils/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/utils/field.go -------------------------------------------------------------------------------- /backend/helpers/utils/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/utils/field_test.go -------------------------------------------------------------------------------- /backend/helpers/utils/mapstructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/utils/mapstructure.go -------------------------------------------------------------------------------- /backend/helpers/utils/mapstructure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/helpers/utils/mapstructure_test.go -------------------------------------------------------------------------------- /backend/impls/context/default_basic_res.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/impls/context/default_basic_res.go -------------------------------------------------------------------------------- /backend/impls/dalgorm/dalgorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/impls/dalgorm/dalgorm.go -------------------------------------------------------------------------------- /backend/impls/dalgorm/dalgorm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/impls/dalgorm/dalgorm_test.go -------------------------------------------------------------------------------- /backend/impls/dalgorm/db_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/impls/dalgorm/db_mapper.go -------------------------------------------------------------------------------- /backend/impls/dalgorm/encdec_serializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/impls/dalgorm/encdec_serializer.go -------------------------------------------------------------------------------- /backend/impls/logruslog/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/impls/logruslog/init.go -------------------------------------------------------------------------------- /backend/impls/logruslog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/impls/logruslog/logger.go -------------------------------------------------------------------------------- /backend/impls/logruslog/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/impls/logruslog/stream.go -------------------------------------------------------------------------------- /backend/impls/logruslog/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/impls/logruslog/utils.go -------------------------------------------------------------------------------- /backend/plugins/ae/ae.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/ae.go -------------------------------------------------------------------------------- /backend/plugins/ae/api/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/api/connection.go -------------------------------------------------------------------------------- /backend/plugins/ae/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/api/init.go -------------------------------------------------------------------------------- /backend/plugins/ae/e2e/commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/e2e/commit_test.go -------------------------------------------------------------------------------- /backend/plugins/ae/e2e/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/e2e/project_test.go -------------------------------------------------------------------------------- /backend/plugins/ae/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/ae/models/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/models/commit.go -------------------------------------------------------------------------------- /backend/plugins/ae/models/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/models/connection.go -------------------------------------------------------------------------------- /backend/plugins/ae/models/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/models/project.go -------------------------------------------------------------------------------- /backend/plugins/ae/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/ae/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/ae/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/azuredevops_go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/azuredevops_go/README.md -------------------------------------------------------------------------------- /backend/plugins/azuredevops_go/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/azuredevops_go/api/init.go -------------------------------------------------------------------------------- /backend/plugins/azuredevops_go/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/azuredevops_go/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/azuredevops_go/models/pr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/azuredevops_go/models/pr.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/api/init.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/bamboo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/bamboo.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/e2e/deploy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/e2e/deploy_test.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/e2e/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/e2e/job_test.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/e2e/plan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/e2e/plan_test.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/models/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/models/connection.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/models/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/models/deploy.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/models/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/models/job.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/models/job_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/models/job_build.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/models/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/models/plan.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/models/plan_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/models/plan_build.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/models/share.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/models/share.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/models/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/models/task_data.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/tasks/shared_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/tasks/shared_test.go -------------------------------------------------------------------------------- /backend/plugins/bamboo/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bamboo/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/api/init.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/bitbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/bitbucket.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/e2e/issue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/e2e/issue_test.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/e2e/pr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/e2e/pr_test.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/e2e/repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/e2e/repo_test.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/models/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/models/account.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/models/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/models/commit.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/models/issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/models/issue.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/models/pr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/models/pr.go -------------------------------------------------------------------------------- /backend/plugins/bitbucket/models/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/bitbucket/models/repo.go -------------------------------------------------------------------------------- /backend/plugins/circleci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/README.md -------------------------------------------------------------------------------- /backend/plugins/circleci/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/api/init.go -------------------------------------------------------------------------------- /backend/plugins/circleci/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/circleci/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/circleci/circleci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/circleci.go -------------------------------------------------------------------------------- /backend/plugins/circleci/e2e/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/e2e/job_test.go -------------------------------------------------------------------------------- /backend/plugins/circleci/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/circleci/models/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/models/account.go -------------------------------------------------------------------------------- /backend/plugins/circleci/models/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/models/job.go -------------------------------------------------------------------------------- /backend/plugins/circleci/models/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/models/pipeline.go -------------------------------------------------------------------------------- /backend/plugins/circleci/models/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/models/project.go -------------------------------------------------------------------------------- /backend/plugins/circleci/models/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/models/workflow.go -------------------------------------------------------------------------------- /backend/plugins/circleci/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/circleci/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/circleci/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/customize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/customize/README.md -------------------------------------------------------------------------------- /backend/plugins/customize/api/csv_issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/customize/api/csv_issue.go -------------------------------------------------------------------------------- /backend/plugins/customize/api/csv_qa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/customize/api/csv_qa.go -------------------------------------------------------------------------------- /backend/plugins/customize/api/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/customize/api/field.go -------------------------------------------------------------------------------- /backend/plugins/customize/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/customize/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/customize/customize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/customize/customize.go -------------------------------------------------------------------------------- /backend/plugins/customize/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/customize/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/customize/models/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/customize/models/model.go -------------------------------------------------------------------------------- /backend/plugins/dbt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dbt/README.md -------------------------------------------------------------------------------- /backend/plugins/dbt/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dbt/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/dbt/dbt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dbt/dbt.go -------------------------------------------------------------------------------- /backend/plugins/dbt/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dbt/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/dbt/tasks/convertor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dbt/tasks/convertor.go -------------------------------------------------------------------------------- /backend/plugins/dbt/tasks/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dbt/tasks/git.go -------------------------------------------------------------------------------- /backend/plugins/dbt/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dbt/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/dora/api/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dora/api/data.go -------------------------------------------------------------------------------- /backend/plugins/dora/dora.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dora/dora.go -------------------------------------------------------------------------------- /backend/plugins/dora/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dora/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/dora/impl/impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dora/impl/impl_test.go -------------------------------------------------------------------------------- /backend/plugins/dora/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/dora/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/feishu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/README.md -------------------------------------------------------------------------------- /backend/plugins/feishu/api/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/api/connection.go -------------------------------------------------------------------------------- /backend/plugins/feishu/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/api/init.go -------------------------------------------------------------------------------- /backend/plugins/feishu/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/feishu/e2e/meeting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/e2e/meeting_test.go -------------------------------------------------------------------------------- /backend/plugins/feishu/feishu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/feishu.go -------------------------------------------------------------------------------- /backend/plugins/feishu/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/feishu/models/chat_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/models/chat_item.go -------------------------------------------------------------------------------- /backend/plugins/feishu/models/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/models/connection.go -------------------------------------------------------------------------------- /backend/plugins/feishu/models/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/models/message.go -------------------------------------------------------------------------------- /backend/plugins/feishu/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/feishu/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/feishu/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/gitee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/README.md -------------------------------------------------------------------------------- /backend/plugins/gitee/api/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/api/connection.go -------------------------------------------------------------------------------- /backend/plugins/gitee/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/api/init.go -------------------------------------------------------------------------------- /backend/plugins/gitee/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/gitee/gitee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/gitee.go -------------------------------------------------------------------------------- /backend/plugins/gitee/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/gitee/models/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/models/account.go -------------------------------------------------------------------------------- /backend/plugins/gitee/models/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/models/commit.go -------------------------------------------------------------------------------- /backend/plugins/gitee/models/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/models/connection.go -------------------------------------------------------------------------------- /backend/plugins/gitee/models/issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/models/issue.go -------------------------------------------------------------------------------- /backend/plugins/gitee/models/issue_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/models/issue_label.go -------------------------------------------------------------------------------- /backend/plugins/gitee/models/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/models/repo.go -------------------------------------------------------------------------------- /backend/plugins/gitee/models/repo_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/models/repo_commit.go -------------------------------------------------------------------------------- /backend/plugins/gitee/models/reviewer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/models/reviewer.go -------------------------------------------------------------------------------- /backend/plugins/gitee/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/gitee/tasks/pr_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/tasks/pr_collector.go -------------------------------------------------------------------------------- /backend/plugins/gitee/tasks/pr_convertor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/tasks/pr_convertor.go -------------------------------------------------------------------------------- /backend/plugins/gitee/tasks/pr_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/tasks/pr_extractor.go -------------------------------------------------------------------------------- /backend/plugins/gitee/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/gitee/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitee/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/gitextractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitextractor/README.md -------------------------------------------------------------------------------- /backend/plugins/gitextractor/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitextractor/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/gitextractor/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitextractor/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/gitextractor/parser/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitextractor/parser/repo.go -------------------------------------------------------------------------------- /backend/plugins/gitextractor/store/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitextractor/store/csv.go -------------------------------------------------------------------------------- /backend/plugins/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/README.md -------------------------------------------------------------------------------- /backend/plugins/github/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/api/init.go -------------------------------------------------------------------------------- /backend/plugins/github/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/github/api/remote_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/api/remote_data.go -------------------------------------------------------------------------------- /backend/plugins/github/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/github/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/github/e2e/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/e2e/account_test.go -------------------------------------------------------------------------------- /backend/plugins/github/e2e/cicd_job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/e2e/cicd_job_test.go -------------------------------------------------------------------------------- /backend/plugins/github/e2e/cicd_run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/e2e/cicd_run_test.go -------------------------------------------------------------------------------- /backend/plugins/github/e2e/comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/e2e/comment_test.go -------------------------------------------------------------------------------- /backend/plugins/github/e2e/commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/e2e/commit_test.go -------------------------------------------------------------------------------- /backend/plugins/github/e2e/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/e2e/event_test.go -------------------------------------------------------------------------------- /backend/plugins/github/e2e/issue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/e2e/issue_test.go -------------------------------------------------------------------------------- /backend/plugins/github/e2e/pr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/e2e/pr_test.go -------------------------------------------------------------------------------- /backend/plugins/github/e2e/repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/e2e/repo_test.go -------------------------------------------------------------------------------- /backend/plugins/github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/github.go -------------------------------------------------------------------------------- /backend/plugins/github/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/github/impl/impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/impl/impl_test.go -------------------------------------------------------------------------------- /backend/plugins/github/models/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/account.go -------------------------------------------------------------------------------- /backend/plugins/github/models/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/commit.go -------------------------------------------------------------------------------- /backend/plugins/github/models/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/connection.go -------------------------------------------------------------------------------- /backend/plugins/github/models/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/deployment.go -------------------------------------------------------------------------------- /backend/plugins/github/models/issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/issue.go -------------------------------------------------------------------------------- /backend/plugins/github/models/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/job.go -------------------------------------------------------------------------------- /backend/plugins/github/models/milestone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/milestone.go -------------------------------------------------------------------------------- /backend/plugins/github/models/pr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/pr.go -------------------------------------------------------------------------------- /backend/plugins/github/models/pr_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/pr_comment.go -------------------------------------------------------------------------------- /backend/plugins/github/models/pr_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/pr_commit.go -------------------------------------------------------------------------------- /backend/plugins/github/models/pr_issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/pr_issue.go -------------------------------------------------------------------------------- /backend/plugins/github/models/pr_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/pr_label.go -------------------------------------------------------------------------------- /backend/plugins/github/models/pr_review.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/pr_review.go -------------------------------------------------------------------------------- /backend/plugins/github/models/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/release.go -------------------------------------------------------------------------------- /backend/plugins/github/models/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/repo.go -------------------------------------------------------------------------------- /backend/plugins/github/models/reviewer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/reviewer.go -------------------------------------------------------------------------------- /backend/plugins/github/models/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/models/run.go -------------------------------------------------------------------------------- /backend/plugins/github/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/github/tasks/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/tasks/register.go -------------------------------------------------------------------------------- /backend/plugins/github/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/github/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/github/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/utils/utils.go -------------------------------------------------------------------------------- /backend/plugins/github/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github/utils/utils_test.go -------------------------------------------------------------------------------- /backend/plugins/github_graphql/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/github_graphql/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/README.md -------------------------------------------------------------------------------- /backend/plugins/gitlab/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/api/init.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/e2e/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/e2e/account_test.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/e2e/issues_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/e2e/issues_test.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/e2e/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/e2e/job_test.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/e2e/mr_notes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/e2e/mr_notes_test.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/e2e/mr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/e2e/mr_test.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/e2e/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/e2e/project_test.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/gitlab.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/account.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/assignee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/assignee.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/commit.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/connection.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/deployment.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/issue.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/job.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/mr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/mr.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/mr_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/mr_comment.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/mr_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/mr_commit.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/mr_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/mr_label.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/mr_note.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/mr_note.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/pipeline.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/project.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/reviewer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/reviewer.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/models/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/models/tag.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/tasks/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/tasks/register.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/gitlab/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/gitlab/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/icla/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/icla/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/icla/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/icla/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/icla/models/committer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/icla/models/committer.go -------------------------------------------------------------------------------- /backend/plugins/icla/plugin_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/icla/plugin_main.go -------------------------------------------------------------------------------- /backend/plugins/icla/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/icla/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/icla/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/icla/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/issue_trace/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/issue_trace/api/init.go -------------------------------------------------------------------------------- /backend/plugins/issue_trace/e2e/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/issue_trace/e2e/meta.go -------------------------------------------------------------------------------- /backend/plugins/issue_trace/issue_trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/issue_trace/issue_trace.go -------------------------------------------------------------------------------- /backend/plugins/issue_trace/utils/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/issue_trace/utils/array.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/README.md -------------------------------------------------------------------------------- /backend/plugins/jenkins/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/api/init.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/api/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/api/jobs.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/api/jobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/api/jobs_test.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/e2e/builds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/e2e/builds_test.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/e2e/jobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/e2e/jobs_test.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/e2e/stages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/e2e/stages_test.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/jenkins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/jenkins.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/models/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/models/build.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/models/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/models/job.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/models/job_dag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/models/job_dag.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/models/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/models/response.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/models/stage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/models/stage.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/jenkins/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jenkins/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/jira/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/README.md -------------------------------------------------------------------------------- /backend/plugins/jira/api/blueprint_v200.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/api/blueprint_v200.go -------------------------------------------------------------------------------- /backend/plugins/jira/api/connection_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/api/connection_api.go -------------------------------------------------------------------------------- /backend/plugins/jira/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/api/init.go -------------------------------------------------------------------------------- /backend/plugins/jira/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/jira/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/jira/api/scope_state_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/api/scope_state_api.go -------------------------------------------------------------------------------- /backend/plugins/jira/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/account_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/board_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/board_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/changelog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/changelog_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/epic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/epic_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/issue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/issue_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/label_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/label_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/project_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/remotelink_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/remotelink_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/sprint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/sprint_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/status_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/e2e/worklog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/e2e/worklog_test.go -------------------------------------------------------------------------------- /backend/plugins/jira/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/jira/jira.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/jira.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/account.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/board.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/board.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/board_issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/board_issue.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/connection.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/issue.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/issue_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/issue_commit.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/issue_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/issue_field.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/issue_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/issue_label.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/issue_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/issue_type.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/project.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/remotelink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/remotelink.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/scope_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/scope_config.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/sprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/sprint.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/status.go -------------------------------------------------------------------------------- /backend/plugins/jira/models/worklog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/models/worklog.go -------------------------------------------------------------------------------- /backend/plugins/jira/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/jira/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/jira/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/jira/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/linker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/linker/README.md -------------------------------------------------------------------------------- /backend/plugins/linker/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/linker/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/linker/linker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/linker/linker.go -------------------------------------------------------------------------------- /backend/plugins/linker/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/linker/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/api/init.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/models/incident.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/models/incident.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/models/raw/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/models/raw/team.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/models/raw/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/models/raw/user.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/models/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/models/service.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/models/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/models/team.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/models/user.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/opsgenie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/opsgenie.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/opsgenie/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/opsgenie/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/org/api/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/org/api/handlers.go -------------------------------------------------------------------------------- /backend/plugins/org/api/project_mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/org/api/project_mapping.go -------------------------------------------------------------------------------- /backend/plugins/org/api/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/org/api/store.go -------------------------------------------------------------------------------- /backend/plugins/org/api/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/org/api/team.go -------------------------------------------------------------------------------- /backend/plugins/org/api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/org/api/types.go -------------------------------------------------------------------------------- /backend/plugins/org/api/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/org/api/user.go -------------------------------------------------------------------------------- /backend/plugins/org/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/org/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/org/org.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/org/org.go -------------------------------------------------------------------------------- /backend/plugins/org/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/org/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/org/tasks/user_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/org/tasks/user_account.go -------------------------------------------------------------------------------- /backend/plugins/pagerduty/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/pagerduty/api/init.go -------------------------------------------------------------------------------- /backend/plugins/pagerduty/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/pagerduty/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/pagerduty/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/pagerduty/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/pagerduty/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/pagerduty/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/pagerduty/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/pagerduty/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/pagerduty/models/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/pagerduty/models/config.go -------------------------------------------------------------------------------- /backend/plugins/pagerduty/models/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/pagerduty/models/service.go -------------------------------------------------------------------------------- /backend/plugins/pagerduty/models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/pagerduty/models/user.go -------------------------------------------------------------------------------- /backend/plugins/pagerduty/pager_duty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/pagerduty/pager_duty.go -------------------------------------------------------------------------------- /backend/plugins/q_dev/Q_DEV_deploy_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/Q_DEV_deploy_guide.md -------------------------------------------------------------------------------- /backend/plugins/q_dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/README.md -------------------------------------------------------------------------------- /backend/plugins/q_dev/api/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/api/connection.go -------------------------------------------------------------------------------- /backend/plugins/q_dev/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/api/init.go -------------------------------------------------------------------------------- /backend/plugins/q_dev/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/img.png -------------------------------------------------------------------------------- /backend/plugins/q_dev/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/q_dev/impl/impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/impl/impl_test.go -------------------------------------------------------------------------------- /backend/plugins/q_dev/models/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/models/connection.go -------------------------------------------------------------------------------- /backend/plugins/q_dev/models/user_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/models/user_data.go -------------------------------------------------------------------------------- /backend/plugins/q_dev/q_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/q_dev.go -------------------------------------------------------------------------------- /backend/plugins/q_dev/tasks/s3_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/tasks/s3_client.go -------------------------------------------------------------------------------- /backend/plugins/q_dev/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/q_dev/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/refdiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/refdiff/README.md -------------------------------------------------------------------------------- /backend/plugins/refdiff/api/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/refdiff/api/connection.go -------------------------------------------------------------------------------- /backend/plugins/refdiff/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/refdiff/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/refdiff/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/refdiff/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/refdiff/refdiff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/refdiff/refdiff.go -------------------------------------------------------------------------------- /backend/plugins/slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/slack/README.md -------------------------------------------------------------------------------- /backend/plugins/slack/api/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/slack/api/connection.go -------------------------------------------------------------------------------- /backend/plugins/slack/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/slack/api/init.go -------------------------------------------------------------------------------- /backend/plugins/slack/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/slack/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/slack/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/slack/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/slack/models/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/slack/models/channel.go -------------------------------------------------------------------------------- /backend/plugins/slack/models/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/slack/models/connection.go -------------------------------------------------------------------------------- /backend/plugins/slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/slack/slack.go -------------------------------------------------------------------------------- /backend/plugins/slack/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/slack/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/slack/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/slack/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/sonarqube/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/sonarqube/api/init.go -------------------------------------------------------------------------------- /backend/plugins/sonarqube/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/sonarqube/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/sonarqube/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/sonarqube/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/sonarqube/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/sonarqube/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/sonarqube/e2e/issue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/sonarqube/e2e/issue_test.go -------------------------------------------------------------------------------- /backend/plugins/sonarqube/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/sonarqube/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/sonarqube/sonarqube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/sonarqube/sonarqube.go -------------------------------------------------------------------------------- /backend/plugins/sonarqube/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/sonarqube/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/starrocks/api/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/starrocks/api/connection.go -------------------------------------------------------------------------------- /backend/plugins/starrocks/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/starrocks/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/starrocks/starrocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/starrocks/starrocks.go -------------------------------------------------------------------------------- /backend/plugins/starrocks/tasks/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/starrocks/tasks/tasks.go -------------------------------------------------------------------------------- /backend/plugins/starrocks/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/starrocks/utils/utils.go -------------------------------------------------------------------------------- /backend/plugins/table_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/table_info_test.go -------------------------------------------------------------------------------- /backend/plugins/tapd/api/blueprint_v200.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/api/blueprint_v200.go -------------------------------------------------------------------------------- /backend/plugins/tapd/api/connection_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/api/connection_api.go -------------------------------------------------------------------------------- /backend/plugins/tapd/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/api/init.go -------------------------------------------------------------------------------- /backend/plugins/tapd/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/tapd/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/tapd/api/scope_state_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/api/scope_state_api.go -------------------------------------------------------------------------------- /backend/plugins/tapd/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/tapd/e2e/bugs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/e2e/bugs_test.go -------------------------------------------------------------------------------- /backend/plugins/tapd/e2e/iterations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/e2e/iterations_test.go -------------------------------------------------------------------------------- /backend/plugins/tapd/e2e/stories_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/e2e/stories_test.go -------------------------------------------------------------------------------- /backend/plugins/tapd/e2e/story_bug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/e2e/story_bug_test.go -------------------------------------------------------------------------------- /backend/plugins/tapd/e2e/tasks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/e2e/tasks_test.go -------------------------------------------------------------------------------- /backend/plugins/tapd/e2e/worklog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/e2e/worklog_test.go -------------------------------------------------------------------------------- /backend/plugins/tapd/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/account.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/bug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/bug.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/bug_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/bug_commit.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/bug_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/bug_label.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/bug_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/bug_status.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/changelog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/changelog.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/connection.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/input.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/iteration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/iteration.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/life_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/life_time.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/scope_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/scope_config.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/story.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/story.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/story_bug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/story_bug.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/story_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/story_label.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/task.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/task_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/task_label.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/worklog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/worklog.go -------------------------------------------------------------------------------- /backend/plugins/tapd/models/workspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/models/workspace.go -------------------------------------------------------------------------------- /backend/plugins/tapd/tapd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/tapd.go -------------------------------------------------------------------------------- /backend/plugins/tapd/tasks/api_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/tasks/api_client.go -------------------------------------------------------------------------------- /backend/plugins/tapd/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/tapd/tasks/shared_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/tasks/shared_test.go -------------------------------------------------------------------------------- /backend/plugins/tapd/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/tapd/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/teambition/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/teambition/api/init.go -------------------------------------------------------------------------------- /backend/plugins/teambition/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/teambition/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/teambition/models/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/teambition/models/task.go -------------------------------------------------------------------------------- /backend/plugins/teambition/teambition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/teambition/teambition.go -------------------------------------------------------------------------------- /backend/plugins/testmo/api/blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/api/blueprint.go -------------------------------------------------------------------------------- /backend/plugins/testmo/api/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/api/connection.go -------------------------------------------------------------------------------- /backend/plugins/testmo/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/api/init.go -------------------------------------------------------------------------------- /backend/plugins/testmo/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/testmo/api/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/api/scope.go -------------------------------------------------------------------------------- /backend/plugins/testmo/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/testmo/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/testmo/models/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/models/project.go -------------------------------------------------------------------------------- /backend/plugins/testmo/models/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/models/test.go -------------------------------------------------------------------------------- /backend/plugins/testmo/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/testmo/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/testmo/testmo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/testmo/testmo.go -------------------------------------------------------------------------------- /backend/plugins/trello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/README.md -------------------------------------------------------------------------------- /backend/plugins/trello/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/api/init.go -------------------------------------------------------------------------------- /backend/plugins/trello/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/trello/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/trello/api/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/api/swagger.go -------------------------------------------------------------------------------- /backend/plugins/trello/e2e/card_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/e2e/card_test.go -------------------------------------------------------------------------------- /backend/plugins/trello/e2e/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/e2e/labels_test.go -------------------------------------------------------------------------------- /backend/plugins/trello/e2e/lists_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/e2e/lists_test.go -------------------------------------------------------------------------------- /backend/plugins/trello/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/trello/models/board.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/models/board.go -------------------------------------------------------------------------------- /backend/plugins/trello/models/card.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/models/card.go -------------------------------------------------------------------------------- /backend/plugins/trello/models/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/models/label.go -------------------------------------------------------------------------------- /backend/plugins/trello/models/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/models/list.go -------------------------------------------------------------------------------- /backend/plugins/trello/models/member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/models/member.go -------------------------------------------------------------------------------- /backend/plugins/trello/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/trello/trello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/trello/trello.go -------------------------------------------------------------------------------- /backend/plugins/webhook/api/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/webhook/api/connection.go -------------------------------------------------------------------------------- /backend/plugins/webhook/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/webhook/api/init.go -------------------------------------------------------------------------------- /backend/plugins/webhook/api/issues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/webhook/api/issues.go -------------------------------------------------------------------------------- /backend/plugins/webhook/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/webhook/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/webhook/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/webhook/webhook.go -------------------------------------------------------------------------------- /backend/plugins/zentao/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/api/init.go -------------------------------------------------------------------------------- /backend/plugins/zentao/api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/api/remote_api.go -------------------------------------------------------------------------------- /backend/plugins/zentao/api/scope_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/api/scope_api.go -------------------------------------------------------------------------------- /backend/plugins/zentao/e2e/bug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/e2e/bug_test.go -------------------------------------------------------------------------------- /backend/plugins/zentao/e2e/story_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/e2e/story_test.go -------------------------------------------------------------------------------- /backend/plugins/zentao/e2e/task_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/e2e/task_test.go -------------------------------------------------------------------------------- /backend/plugins/zentao/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/impl/impl.go -------------------------------------------------------------------------------- /backend/plugins/zentao/models/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/models/account.go -------------------------------------------------------------------------------- /backend/plugins/zentao/models/bug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/models/bug.go -------------------------------------------------------------------------------- /backend/plugins/zentao/models/bug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/models/bug_test.go -------------------------------------------------------------------------------- /backend/plugins/zentao/models/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/models/product.go -------------------------------------------------------------------------------- /backend/plugins/zentao/models/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/models/project.go -------------------------------------------------------------------------------- /backend/plugins/zentao/models/story.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/models/story.go -------------------------------------------------------------------------------- /backend/plugins/zentao/models/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/models/task.go -------------------------------------------------------------------------------- /backend/plugins/zentao/models/worklog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/models/worklog.go -------------------------------------------------------------------------------- /backend/plugins/zentao/tasks/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/tasks/iterator.go -------------------------------------------------------------------------------- /backend/plugins/zentao/tasks/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/tasks/shared.go -------------------------------------------------------------------------------- /backend/plugins/zentao/tasks/task_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/tasks/task_data.go -------------------------------------------------------------------------------- /backend/plugins/zentao/zentao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/plugins/zentao/zentao.go -------------------------------------------------------------------------------- /backend/python/DevelopmentSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/DevelopmentSetup.md -------------------------------------------------------------------------------- /backend/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/README.md -------------------------------------------------------------------------------- /backend/python/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/build.sh -------------------------------------------------------------------------------- /backend/python/plugins/azuredevops/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/plugins/azuredevops/run.sh -------------------------------------------------------------------------------- /backend/python/pydevlake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/pydevlake/README.md -------------------------------------------------------------------------------- /backend/python/pydevlake/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/pydevlake/poetry.lock -------------------------------------------------------------------------------- /backend/python/pydevlake/pydevlake/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/pydevlake/pydevlake/api.py -------------------------------------------------------------------------------- /backend/python/pydevlake/pydevlake/ipc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/pydevlake/pydevlake/ipc.py -------------------------------------------------------------------------------- /backend/python/pydevlake/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/pydevlake/pyproject.toml -------------------------------------------------------------------------------- /backend/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/requirements.txt -------------------------------------------------------------------------------- /backend/python/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/run_tests.sh -------------------------------------------------------------------------------- /backend/python/test/fakeplugin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/test/fakeplugin/build.sh -------------------------------------------------------------------------------- /backend/python/test/fakeplugin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/python/test/fakeplugin/run.sh -------------------------------------------------------------------------------- /backend/resources/tap/pagerduty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/resources/tap/pagerduty.json -------------------------------------------------------------------------------- /backend/scripts/build-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/scripts/build-plugins.sh -------------------------------------------------------------------------------- /backend/scripts/build-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/scripts/build-python.sh -------------------------------------------------------------------------------- /backend/scripts/build-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/scripts/build-server.sh -------------------------------------------------------------------------------- /backend/scripts/docker/mysql/init-ds.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/scripts/docker/mysql/init-ds.sql -------------------------------------------------------------------------------- /backend/scripts/e2e-test-go-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/scripts/e2e-test-go-plugins.sh -------------------------------------------------------------------------------- /backend/scripts/e2e-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/scripts/e2e-test.sh -------------------------------------------------------------------------------- /backend/scripts/jira-api-benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/scripts/jira-api-benchmark.sh -------------------------------------------------------------------------------- /backend/scripts/swag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/scripts/swag.sh -------------------------------------------------------------------------------- /backend/scripts/unit-test-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/scripts/unit-test-go.sh -------------------------------------------------------------------------------- /backend/server/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/README.md -------------------------------------------------------------------------------- /backend/server/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/api.go -------------------------------------------------------------------------------- /backend/server/api/apikeys/apikeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/apikeys/apikeys.go -------------------------------------------------------------------------------- /backend/server/api/docs/stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/docs/stub.go -------------------------------------------------------------------------------- /backend/server/api/domainlayer/repos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/domainlayer/repos.go -------------------------------------------------------------------------------- /backend/server/api/middlewares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/middlewares.go -------------------------------------------------------------------------------- /backend/server/api/ping/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/ping/ping.go -------------------------------------------------------------------------------- /backend/server/api/pipelines/pipelines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/pipelines/pipelines.go -------------------------------------------------------------------------------- /backend/server/api/project/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/project/project.go -------------------------------------------------------------------------------- /backend/server/api/push/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/push/README.md -------------------------------------------------------------------------------- /backend/server/api/push/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/push/push.go -------------------------------------------------------------------------------- /backend/server/api/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/router.go -------------------------------------------------------------------------------- /backend/server/api/shared/api_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/shared/api_output.go -------------------------------------------------------------------------------- /backend/server/api/shared/gin_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/shared/gin_utils.go -------------------------------------------------------------------------------- /backend/server/api/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/store/store.go -------------------------------------------------------------------------------- /backend/server/api/task/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/task/task.go -------------------------------------------------------------------------------- /backend/server/api/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/api/version/version.go -------------------------------------------------------------------------------- /backend/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/main.go -------------------------------------------------------------------------------- /backend/server/services/apikeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/apikeys.go -------------------------------------------------------------------------------- /backend/server/services/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/base.go -------------------------------------------------------------------------------- /backend/server/services/blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/blueprint.go -------------------------------------------------------------------------------- /backend/server/services/blueprint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/blueprint_test.go -------------------------------------------------------------------------------- /backend/server/services/dm_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/dm_code.go -------------------------------------------------------------------------------- /backend/server/services/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/init.go -------------------------------------------------------------------------------- /backend/server/services/locking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/locking.go -------------------------------------------------------------------------------- /backend/server/services/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/pipeline.go -------------------------------------------------------------------------------- /backend/server/services/pluginapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/pluginapi.go -------------------------------------------------------------------------------- /backend/server/services/probes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/probes.go -------------------------------------------------------------------------------- /backend/server/services/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/project.go -------------------------------------------------------------------------------- /backend/server/services/pushapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/pushapi.go -------------------------------------------------------------------------------- /backend/server/services/remote/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/remote/init.go -------------------------------------------------------------------------------- /backend/server/services/remote/run/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/remote/run/run.go -------------------------------------------------------------------------------- /backend/server/services/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/store.go -------------------------------------------------------------------------------- /backend/server/services/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/task.go -------------------------------------------------------------------------------- /backend/server/services/task_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/server/services/task_runner.go -------------------------------------------------------------------------------- /backend/swagger-stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/swagger-stub.go -------------------------------------------------------------------------------- /backend/test/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/Readme.md -------------------------------------------------------------------------------- /backend/test/e2e/manual/.gitignore: -------------------------------------------------------------------------------- 1 | *_local_test.go -------------------------------------------------------------------------------- /backend/test/e2e/manual/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/e2e/manual/Readme.md -------------------------------------------------------------------------------- /backend/test/e2e/manual/gitlab/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/e2e/manual/gitlab/models.go -------------------------------------------------------------------------------- /backend/test/e2e/manual/testmo/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/e2e/manual/testmo/models.go -------------------------------------------------------------------------------- /backend/test/e2e/remote/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/e2e/remote/helper.go -------------------------------------------------------------------------------- /backend/test/helper/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/helper/api.go -------------------------------------------------------------------------------- /backend/test/helper/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/helper/bootstrap.go -------------------------------------------------------------------------------- /backend/test/helper/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/helper/client.go -------------------------------------------------------------------------------- /backend/test/helper/client_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/helper/client_factory.go -------------------------------------------------------------------------------- /backend/test/helper/db_selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/helper/db_selector.go -------------------------------------------------------------------------------- /backend/test/helper/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/helper/init.go -------------------------------------------------------------------------------- /backend/test/helper/json_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/helper/json_helper.go -------------------------------------------------------------------------------- /backend/test/helper/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/helper/models.go -------------------------------------------------------------------------------- /backend/test/helper/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/helper/utils.go -------------------------------------------------------------------------------- /backend/test/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/backend/test/init.go -------------------------------------------------------------------------------- /config-ui/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /config-ui/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/.eslintignore -------------------------------------------------------------------------------- /config-ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/.eslintrc.js -------------------------------------------------------------------------------- /config-ui/.file-headerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/.file-headerrc -------------------------------------------------------------------------------- /config-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/.gitignore -------------------------------------------------------------------------------- /config-ui/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/.husky/pre-commit -------------------------------------------------------------------------------- /config-ui/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/.prettierignore -------------------------------------------------------------------------------- /config-ui/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/.prettierrc.js -------------------------------------------------------------------------------- /config-ui/.yarn/releases/yarn-3.4.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/.yarn/releases/yarn-3.4.1.cjs -------------------------------------------------------------------------------- /config-ui/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/.yarnrc.yml -------------------------------------------------------------------------------- /config-ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/Dockerfile -------------------------------------------------------------------------------- /config-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/README.md -------------------------------------------------------------------------------- /config-ui/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/env.example -------------------------------------------------------------------------------- /config-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/index.html -------------------------------------------------------------------------------- /config-ui/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/nginx.conf -------------------------------------------------------------------------------- /config-ui/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/nginx.sh -------------------------------------------------------------------------------- /config-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/package.json -------------------------------------------------------------------------------- /config-ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/public/favicon.ico -------------------------------------------------------------------------------- /config-ui/public/onboard/step-1/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/public/onboard/step-1/github.md -------------------------------------------------------------------------------- /config-ui/public/onboard/step-1/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/public/onboard/step-1/gitlab.md -------------------------------------------------------------------------------- /config-ui/public/onboard/step-2/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/public/onboard/step-2/github.md -------------------------------------------------------------------------------- /config-ui/public/onboard/step-2/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/public/onboard/step-2/gitlab.md -------------------------------------------------------------------------------- /config-ui/public/onboard/step-3/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/public/onboard/step-3/github.md -------------------------------------------------------------------------------- /config-ui/public/onboard/step-3/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/public/onboard/step-3/gitlab.md -------------------------------------------------------------------------------- /config-ui/src/api/api-key/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/api-key/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/blueprint/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/blueprint/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/connection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/connection/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/pipeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/pipeline/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/pipeline/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/pipeline/types.ts -------------------------------------------------------------------------------- /config-ui/src/api/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/plugin/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/plugin/jira/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/plugin/jira/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/plugin/tapd/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/plugin/tapd/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/plugin/webhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/plugin/webhook/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/project/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/scope-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/scope-config/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/scope-config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/scope-config/types.ts -------------------------------------------------------------------------------- /config-ui/src/api/scope/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/scope/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/store/index.ts -------------------------------------------------------------------------------- /config-ui/src/api/task/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/api/task/index.ts -------------------------------------------------------------------------------- /config-ui/src/app/routrer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/app/routrer.tsx -------------------------------------------------------------------------------- /config-ui/src/app/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/app/store.ts -------------------------------------------------------------------------------- /config-ui/src/components/action/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/components/action/index.ts -------------------------------------------------------------------------------- /config-ui/src/components/block/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/components/block/index.tsx -------------------------------------------------------------------------------- /config-ui/src/components/block/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/components/block/styled.ts -------------------------------------------------------------------------------- /config-ui/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/components/index.ts -------------------------------------------------------------------------------- /config-ui/src/components/loading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/components/loading/index.ts -------------------------------------------------------------------------------- /config-ui/src/components/logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/components/logo/index.tsx -------------------------------------------------------------------------------- /config-ui/src/components/tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/components/tooltip/index.ts -------------------------------------------------------------------------------- /config-ui/src/config/cron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/config/cron.ts -------------------------------------------------------------------------------- /config-ui/src/config/endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/config/endpoint.ts -------------------------------------------------------------------------------- /config-ui/src/config/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/config/entities.ts -------------------------------------------------------------------------------- /config-ui/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/config/index.ts -------------------------------------------------------------------------------- /config-ui/src/config/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/config/paths.ts -------------------------------------------------------------------------------- /config-ui/src/features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/features/index.ts -------------------------------------------------------------------------------- /config-ui/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/global.d.ts -------------------------------------------------------------------------------- /config-ui/src/hooks/extend-redux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/hooks/extend-redux.ts -------------------------------------------------------------------------------- /config-ui/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/hooks/index.ts -------------------------------------------------------------------------------- /config-ui/src/hooks/use-auto-refresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/hooks/use-auto-refresh.ts -------------------------------------------------------------------------------- /config-ui/src/hooks/use-refresh-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/hooks/use-refresh-data.ts -------------------------------------------------------------------------------- /config-ui/src/hooks/user-proxy-prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/hooks/user-proxy-prefix.ts -------------------------------------------------------------------------------- /config-ui/src/images/icons/api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/icons/api.svg -------------------------------------------------------------------------------- /config-ui/src/images/icons/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/icons/clear.svg -------------------------------------------------------------------------------- /config-ui/src/images/icons/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/icons/dashboard.svg -------------------------------------------------------------------------------- /config-ui/src/images/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/icons/file.svg -------------------------------------------------------------------------------- /config-ui/src/images/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/icons/github.svg -------------------------------------------------------------------------------- /config-ui/src/images/icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/icons/slack.svg -------------------------------------------------------------------------------- /config-ui/src/images/jira-issue-tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/jira-issue-tips.png -------------------------------------------------------------------------------- /config-ui/src/images/logo-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/logo-horizontal.svg -------------------------------------------------------------------------------- /config-ui/src/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/logo.svg -------------------------------------------------------------------------------- /config-ui/src/images/no-data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/no-data.svg -------------------------------------------------------------------------------- /config-ui/src/images/no-webhook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/no-webhook.svg -------------------------------------------------------------------------------- /config-ui/src/images/plugin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/images/plugin-icon.svg -------------------------------------------------------------------------------- /config-ui/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/index.css -------------------------------------------------------------------------------- /config-ui/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/main.tsx -------------------------------------------------------------------------------- /config-ui/src/plugins/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/plugins/components/index.ts -------------------------------------------------------------------------------- /config-ui/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/plugins/index.ts -------------------------------------------------------------------------------- /config-ui/src/plugins/register/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/plugins/register/index.ts -------------------------------------------------------------------------------- /config-ui/src/plugins/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/plugins/utils.ts -------------------------------------------------------------------------------- /config-ui/src/release/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/release/index.ts -------------------------------------------------------------------------------- /config-ui/src/release/stable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/release/stable.ts -------------------------------------------------------------------------------- /config-ui/src/release/v0.18.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/release/v0.18.ts -------------------------------------------------------------------------------- /config-ui/src/release/v0.19.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/release/v0.19.ts -------------------------------------------------------------------------------- /config-ui/src/release/v0.20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/release/v0.20.ts -------------------------------------------------------------------------------- /config-ui/src/release/v0.21.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/release/v0.21.ts -------------------------------------------------------------------------------- /config-ui/src/release/v1.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/release/v1.0.ts -------------------------------------------------------------------------------- /config-ui/src/routes/api-keys/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/api-keys/constant.ts -------------------------------------------------------------------------------- /config-ui/src/routes/api-keys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/api-keys/index.ts -------------------------------------------------------------------------------- /config-ui/src/routes/api-keys/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/api-keys/styled.ts -------------------------------------------------------------------------------- /config-ui/src/routes/blueprint/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/blueprint/index.ts -------------------------------------------------------------------------------- /config-ui/src/routes/blueprint/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/blueprint/types.ts -------------------------------------------------------------------------------- /config-ui/src/routes/blueprint/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/blueprint/utils.ts -------------------------------------------------------------------------------- /config-ui/src/routes/connection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/connection/index.ts -------------------------------------------------------------------------------- /config-ui/src/routes/connection/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/connection/styled.ts -------------------------------------------------------------------------------- /config-ui/src/routes/db-migrate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/db-migrate/index.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/error/index.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/index.ts -------------------------------------------------------------------------------- /config-ui/src/routes/layout/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/layout/config.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/layout/index.ts -------------------------------------------------------------------------------- /config-ui/src/routes/layout/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/layout/layout.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/layout/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/layout/loader.ts -------------------------------------------------------------------------------- /config-ui/src/routes/not-found/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/not-found/index.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/onboard/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/onboard/context.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/onboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/onboard/index.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/onboard/step-0.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/onboard/step-0.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/onboard/step-1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/onboard/step-1.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/onboard/step-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/onboard/step-2.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/onboard/step-3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/onboard/step-3.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/onboard/step-4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/onboard/step-4.tsx -------------------------------------------------------------------------------- /config-ui/src/routes/onboard/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/onboard/styled.ts -------------------------------------------------------------------------------- /config-ui/src/routes/pipeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/pipeline/index.ts -------------------------------------------------------------------------------- /config-ui/src/routes/pipeline/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/pipeline/styled.ts -------------------------------------------------------------------------------- /config-ui/src/routes/project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/project/index.ts -------------------------------------------------------------------------------- /config-ui/src/routes/project/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/routes/project/utils.ts -------------------------------------------------------------------------------- /config-ui/src/types/api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/api-key.ts -------------------------------------------------------------------------------- /config-ui/src/types/blueprint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/blueprint.ts -------------------------------------------------------------------------------- /config-ui/src/types/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/connection.ts -------------------------------------------------------------------------------- /config-ui/src/types/data-scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/data-scope.ts -------------------------------------------------------------------------------- /config-ui/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/index.ts -------------------------------------------------------------------------------- /config-ui/src/types/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/pipeline.ts -------------------------------------------------------------------------------- /config-ui/src/types/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/plugin.ts -------------------------------------------------------------------------------- /config-ui/src/types/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/project.ts -------------------------------------------------------------------------------- /config-ui/src/types/scope-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/scope-config.ts -------------------------------------------------------------------------------- /config-ui/src/types/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/status.ts -------------------------------------------------------------------------------- /config-ui/src/types/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/task.ts -------------------------------------------------------------------------------- /config-ui/src/types/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/types/webhook.ts -------------------------------------------------------------------------------- /config-ui/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/utils/index.ts -------------------------------------------------------------------------------- /config-ui/src/utils/operator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/utils/operator.ts -------------------------------------------------------------------------------- /config-ui/src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/utils/request.ts -------------------------------------------------------------------------------- /config-ui/src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/utils/time.ts -------------------------------------------------------------------------------- /config-ui/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/src/vite-env.d.ts -------------------------------------------------------------------------------- /config-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/tsconfig.json -------------------------------------------------------------------------------- /config-ui/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/tsconfig.node.json -------------------------------------------------------------------------------- /config-ui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/vite.config.ts -------------------------------------------------------------------------------- /config-ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/config-ui/yarn.lock -------------------------------------------------------------------------------- /devops/deployment/k8s/k8s-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/deployment/k8s/k8s-deploy.yaml -------------------------------------------------------------------------------- /devops/docker/alpine-dbt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/docker/alpine-dbt/Dockerfile -------------------------------------------------------------------------------- /devops/docker/alpine-dbt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/docker/alpine-dbt/README.md -------------------------------------------------------------------------------- /devops/docker/lake-builder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/docker/lake-builder/Dockerfile -------------------------------------------------------------------------------- /devops/docker/lake-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/docker/lake-builder/README.md -------------------------------------------------------------------------------- /devops/releases/lake-v0.10.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.10.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.10.1/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.10.1/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.11.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.11.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.12.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.12.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.13.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.13.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.14.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.14.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.15.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.15.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.16.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.16.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.17.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.17.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.18.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.18.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.19.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.19.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.20.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.20.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.21.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.21.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.7.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.7.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.8.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.8.0/env.example -------------------------------------------------------------------------------- /devops/releases/lake-v0.9.0/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/devops/releases/lake-v0.9.0/env.example -------------------------------------------------------------------------------- /docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/docker-compose-dev.yml -------------------------------------------------------------------------------- /docker-compose.datasources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/docker-compose.datasources.yml -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/env.example -------------------------------------------------------------------------------- /grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/Dockerfile -------------------------------------------------------------------------------- /grafana/_archive/Gitlab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/_archive/Gitlab.json -------------------------------------------------------------------------------- /grafana/_archive/Jenkins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/_archive/Jenkins.json -------------------------------------------------------------------------------- /grafana/dashboards/AzureDevOps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/AzureDevOps.json -------------------------------------------------------------------------------- /grafana/dashboards/Bamboo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/Bamboo.json -------------------------------------------------------------------------------- /grafana/dashboards/BitBucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/BitBucket.json -------------------------------------------------------------------------------- /grafana/dashboards/CircleCI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/CircleCI.json -------------------------------------------------------------------------------- /grafana/dashboards/DORA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/DORA.json -------------------------------------------------------------------------------- /grafana/dashboards/DORAByTeam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/DORAByTeam.json -------------------------------------------------------------------------------- /grafana/dashboards/DORADebug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/DORADebug.json -------------------------------------------------------------------------------- /grafana/dashboards/DemoHomepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/DemoHomepage.json -------------------------------------------------------------------------------- /grafana/dashboards/GitHub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/GitHub.json -------------------------------------------------------------------------------- /grafana/dashboards/Gitlab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/Gitlab.json -------------------------------------------------------------------------------- /grafana/dashboards/Homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/Homepage.json -------------------------------------------------------------------------------- /grafana/dashboards/Jenkins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/Jenkins.json -------------------------------------------------------------------------------- /grafana/dashboards/Jira.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/Jira.json -------------------------------------------------------------------------------- /grafana/dashboards/Opsgenie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/Opsgenie.json -------------------------------------------------------------------------------- /grafana/dashboards/PagerDuty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/PagerDuty.json -------------------------------------------------------------------------------- /grafana/dashboards/SonarQubeCloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/SonarQubeCloud.json -------------------------------------------------------------------------------- /grafana/dashboards/Sonarqube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/Sonarqube.json -------------------------------------------------------------------------------- /grafana/dashboards/TAPD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/TAPD.json -------------------------------------------------------------------------------- /grafana/dashboards/Teambition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/Teambition.json -------------------------------------------------------------------------------- /grafana/dashboards/Testmo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/Testmo.json -------------------------------------------------------------------------------- /grafana/dashboards/WeeklyBugRetro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/WeeklyBugRetro.json -------------------------------------------------------------------------------- /grafana/dashboards/WorkLogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/WorkLogs.json -------------------------------------------------------------------------------- /grafana/dashboards/Zentao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/Zentao.json -------------------------------------------------------------------------------- /grafana/dashboards/qdev_user_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/dashboards/qdev_user_data.json -------------------------------------------------------------------------------- /grafana/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/img/1.png -------------------------------------------------------------------------------- /grafana/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/img/2.png -------------------------------------------------------------------------------- /grafana/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/img/3.png -------------------------------------------------------------------------------- /grafana/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/img/4.png -------------------------------------------------------------------------------- /grafana/img/grafana_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/img/grafana_icon.svg -------------------------------------------------------------------------------- /grafana/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/img/logo.png -------------------------------------------------------------------------------- /grafana/img/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/grafana/img/more.png -------------------------------------------------------------------------------- /resources/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/resources/img/logo.svg -------------------------------------------------------------------------------- /resources/img/userflow1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/resources/img/userflow1.svg -------------------------------------------------------------------------------- /resources/img/userflow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/resources/img/userflow2.svg -------------------------------------------------------------------------------- /resources/img/userflow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/resources/img/userflow3.png -------------------------------------------------------------------------------- /resources/img/userflow4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merico-dev/lake/HEAD/resources/img/userflow4.png --------------------------------------------------------------------------------