diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index a04beef39b77..9396f2efb7ed 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -605,11 +605,11 @@ - name: Gitlab sourceDefinitionId: 5e6175e5-68e1-4c17-bff9-56103bbb0d80 dockerRepository: airbyte/source-gitlab - dockerImageTag: 0.1.12 + dockerImageTag: 1.0.0 documentationUrl: https://docs.airbyte.com/integrations/sources/gitlab icon: gitlab.svg sourceType: api - releaseStage: alpha + releaseStage: beta - name: Glassfrog sourceDefinitionId: cf8ff320-6272-4faa-89e6-4402dc17e5d5 dockerRepository: airbyte/source-glassfrog diff --git a/airbyte-config/init/src/main/resources/seed/source_specs.yaml b/airbyte-config/init/src/main/resources/seed/source_specs.yaml index 0193c183b78c..332c0179ea3a 100644 --- a/airbyte-config/init/src/main/resources/seed/source_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_specs.yaml @@ -4732,31 +4732,76 @@ path_in_connector_config: - "credentials" - "client_secret" -- dockerImage: "airbyte/source-gitlab:0.1.12" +- dockerImage: "airbyte/source-gitlab:1.0.0" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/gitlab" connectionSpecification: $schema: "http://json-schema.org/draft-07/schema#" - title: "Source GitLab Singer Spec" + title: "Source Gitlab Spec" type: "object" required: - "api_url" - - "private_token" - "start_date" + - "credentials" additionalProperties: true properties: - private_token: - type: "string" - title: "Private Token" - description: "Log into your GitLab account and then generate a personal\ - \ [Access Token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html)." - airbyte_secret: true + credentials: + title: "Authorization Method" + type: "object" order: 0 + oneOf: + - type: "object" + title: "OAuth2.0" + required: + - "client_id" + - "client_secret" + - "refresh_token" + - "access_token" + - "token_expiry_date" + properties: + auth_type: + type: "string" + const: "oauth2.0" + client_id: + type: "string" + description: "The API ID of the Gitlab developer application." + airbyte_secret: true + client_secret: + type: "string" + description: "The API Secret the Gitlab developer application." + airbyte_secret: true + access_token: + type: "string" + description: "Access Token for making authenticated requests." + airbyte_secret: true + token_expiry_date: + type: "string" + description: "The date-time when the access token should be refreshed." + format: "date-time" + refresh_token: + type: "string" + description: "The key to refresh the expired access_token." + airbyte_secret: true + - title: "Private Token" + type: "object" + required: + - "access_token" + properties: + auth_type: + type: "string" + const: "access_token" + access_token: + type: "string" + title: "Private Token" + description: "Log into your Gitlab account and then generate a personal\ + \ Access Token." + airbyte_secret: true api_url: type: "string" examples: - "gitlab.com" title: "API URL" + default: "gitlab.com" description: "Please enter your basic URL from GitLab instance." order: 1 start_date: @@ -4787,6 +4832,59 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] + advanced_auth: + auth_flow_type: "oauth2.0" + predicate_key: + - "credentials" + - "auth_type" + predicate_value: "oauth2.0" + oauth_config_specification: + oauth_user_input_from_connector_config_specification: + type: "object" + properties: + domain: + type: "string" + path_in_connector_config: + - "api_url" + complete_oauth_output_specification: + type: "object" + properties: + access_token: + type: "string" + path_in_connector_config: + - "credentials" + - "access_token" + refresh_token: + type: "string" + path_in_connector_config: + - "credentials" + - "refresh_token" + token_expiry_date: + type: "string" + format: "date-time" + path_in_connector_config: + - "credentials" + - "token_expiry_date" + complete_oauth_server_input_specification: + type: "object" + properties: + client_id: + type: "string" + client_secret: + type: "string" + complete_oauth_server_output_specification: + type: "object" + properties: + client_id: + type: "string" + path_in_connector_config: + - "credentials" + - "client_id" + client_secret: + type: "string" + path_in_connector_config: + - "credentials" + - "client_secret" - dockerImage: "airbyte/source-glassfrog:0.1.0" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/glassfrog" diff --git a/airbyte-integrations/connectors/source-gitlab/Dockerfile b/airbyte-integrations/connectors/source-gitlab/Dockerfile index 5d17be4d0242..5466ec492148 100644 --- a/airbyte-integrations/connectors/source-gitlab/Dockerfile +++ b/airbyte-integrations/connectors/source-gitlab/Dockerfile @@ -13,5 +13,5 @@ COPY main.py ./ ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.12 +LABEL io.airbyte.version=1.0.0 LABEL io.airbyte.name=airbyte/source-gitlab diff --git a/airbyte-integrations/connectors/source-gitlab/acceptance-test-config.yml b/airbyte-integrations/connectors/source-gitlab/acceptance-test-config.yml index 270c6ae20192..2fcb99e43b6d 100644 --- a/airbyte-integrations/connectors/source-gitlab/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-gitlab/acceptance-test-config.yml @@ -4,15 +4,24 @@ acceptance_tests: spec: tests: - spec_path: "source_gitlab/spec.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.12" connection: tests: - config_path: "secrets/config.json" status: "succeed" + - config_path: "secrets/config_oauth.json" + status: "succeed" - config_path: "integration_tests/invalid_config.json" status: "failed" discovery: tests: - config_path: "secrets/config.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.12" + - config_path: "secrets/config_oauth.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.12" basic_read: tests: - config_path: "secrets/config.json" @@ -26,6 +35,9 @@ acceptance_tests: bypass_reason: "Group in this config does not have epics issues. This stream is tested in the above TC." expect_records: path: "integration_tests/expected_records_with_ids.jsonl" + - config_path: "secrets/config_oauth.json" + expect_records: + path: "integration_tests/expected_records.jsonl" incremental: tests: - config_path: "secrets/config_with_ids.json" diff --git a/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records.jsonl b/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records.jsonl index baa8ede9bd44..82c47ead13ce 100644 --- a/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records.jsonl +++ b/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records.jsonl @@ -1,152 +1,152 @@ -{"stream":"groups","data":{"id":11329647,"web_url":"https://gitlab.com/groups/new-group-airbute","name":"New Group Airbute","path":"new-group-airbute","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute","full_path":"new-group-airbute","created_at":"2021-03-15T15:55:53.613Z","parent_id":null,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941-PhosPap-Sf1UxL1g6m4","prevent_sharing_groups_outside_hierarchy":false,"shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":25157276,"path_with_namespace":"new-group-airbute/new-ci-test-project"}]},"emitted_at":1671097000589} -{"stream":"groups","data":{"id":61014882,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg","name":"Test Private SG","path":"test-private-sg","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg","created_at":"2022-12-02T08:46:22.648Z","parent_id":61014863,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941bjUaJQy2zzar-JmNBjfq","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097000981} -{"stream":"groups","data":{"id":61015181,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1","name":"Test Private SubSubG 1","path":"test-private-subsubg-1","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Private SubSubG 1","full_path":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1","created_at":"2022-12-02T08:54:42.252Z","parent_id":61014943,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941x8xQf6K-UvnnyJ-bcut4","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41551658,"path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup"}]},"emitted_at":1671097001388} -{"stream":"groups","data":{"id":61015232,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2","name":"Test Private SubSubG 2","path":"test-private-subsubg-2","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2","created_at":"2022-12-02T08:56:21.783Z","parent_id":61014882,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941bnTmxzY-5zek69yJ7s4r","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097002002} -{"stream":"groups","data":{"id":61015239,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3","name":"Test Private SubSubG 3","path":"test-private-subsubg-3","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2 / Test Private SubSubG 3","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3","created_at":"2022-12-02T08:56:34.202Z","parent_id":61015232,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941fxQ648-7Mt4f2K11VUwm","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097002311} -{"stream":"groups","data":{"id":61014902,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg","name":"Test Public SG","path":"test-public-sg","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG","full_path":"new-group-airbute/test-public-sg","created_at":"2022-12-02T08:47:02.412Z","parent_id":11329647,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941iDo59yBXTTUMQUQztr_x","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541906,"path_with_namespace":"new-group-airbute/test-public-sg/test-public-project-1"}]},"emitted_at":1671097002935} -{"stream":"groups","data":{"id":61015202,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1","name":"Test Public SubSubG 1","path":"test-public-subsubg-1","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Public SubSubG 1","full_path":"new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1","created_at":"2022-12-02T08:55:27.046Z","parent_id":61014943,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941K9JsRDnw2J5ZQxgCDr6d","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097003537} -{"stream":"groups","data":{"id":61014943,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2","name":"Test SG Public 2","path":"test-sg-public-2","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2","full_path":"new-group-airbute/test-public-sg/test-sg-public-2","created_at":"2022-12-02T08:48:04.727Z","parent_id":61014902,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941eGbxua89EPU8uu4snVuj","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541858,"path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-project-1"}]},"emitted_at":1671097003939} -{"stream":"groups","data":{"id":61014863,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte","name":"Test Subgroup Airbyte","path":"test-subgroup-airbyte","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte","full_path":"new-group-airbute/test-subgroup-airbyte","created_at":"2022-12-02T08:45:53.479Z","parent_id":11329647,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941yL2Jtfwss88thzmUPZv5","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541892,"path_with_namespace":"new-group-airbute/test-subgroup-airbyte/test-project-2"}]},"emitted_at":1671097004356} -{"stream":"groups","data":{"id":11266951,"web_url":"https://gitlab.com/groups/airbyte.io","name":"airbyte.io","path":"airbyte.io","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"airbyte.io","full_path":"airbyte.io","created_at":"2021-03-10T17:16:37.549Z","parent_id":null,"ldap_cn":null,"ldap_access":null,"marked_for_deletion_on":null,"shared_with_groups":[],"runners_token":"GR1348941bzmDjXx-Cz48snUcJfK8","prevent_sharing_groups_outside_hierarchy":false,"shared_projects":[],"shared_runners_minutes_limit":10000,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":false,"membership_lock":false,"ip_restriction_ranges":null,"projects":[{"id":25156633,"path_with_namespace":"airbyte.io/ci-test-project"},{"id":25032440,"path_with_namespace":"airbyte.io/learn-gitlab"},{"id":25032439,"path_with_namespace":"airbyte.io/documentation"}]},"emitted_at":1671097004872} -{"stream":"projects","data":{"id":41541906,"description":"Project description","name":"Test Public Project 1","name_with_namespace":"New Group Airbute / Test Public SG / Test Public Project 1","path":"test-public-project-1","path_with_namespace":"new-group-airbute/test-public-sg/test-public-project-1","created_at":"2022-12-02T08:52:11.319Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/test-public-sg/test-public-project-1.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1.git","web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1","readme_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-02T08:52:11.319Z","namespace":{"id":61014902,"name":"Test Public SG","path":"test-public-sg","kind":"group","full_path":"new-group-airbute/test-public-sg","parent_id":11329647,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/test-public-sg/test-public-project-1","_links":{"self":"https://gitlab.com/api/v4/projects/41541906","issues":"https://gitlab.com/api/v4/projects/41541906/issues","merge_requests":"https://gitlab.com/api/v4/projects/41541906/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/41541906/repository/branches","labels":"https://gitlab.com/api/v4/projects/41541906/labels","events":"https://gitlab.com/api/v4/projects/41541906/events","members":"https://gitlab.com/api/v4/projects/41541906/members","cluster_agents":"https://gitlab.com/api/v4/projects/41541906/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"public","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2022-12-03T08:52:11.354Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":false,"service_desk_address":"contact-project+new-group-airbute-test-public-sg-test-public-project-1-41541906-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":"gitlab_project","import_status":"finished","import_error":null,"open_issues_count":0,"runners_token":"GR1348941Ni12De_sRyL6anY2uhzP","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":1,"storage_size":209715,"repository_size":209715,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097005407} -{"stream":"projects","data":{"id":41541858,"description":"Project description","name":"Test Project 1","name_with_namespace":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Project 1","path":"test-project-1","path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-project-1","created_at":"2022-12-02T08:50:08.842Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/test-public-sg/test-sg-public-2/test-project-1.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1.git","web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1","readme_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-02T08:50:08.842Z","namespace":{"id":61014943,"name":"Test SG Public 2","path":"test-sg-public-2","kind":"group","full_path":"new-group-airbute/test-public-sg/test-sg-public-2","parent_id":61014902,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1","_links":{"self":"https://gitlab.com/api/v4/projects/41541858","issues":"https://gitlab.com/api/v4/projects/41541858/issues","merge_requests":"https://gitlab.com/api/v4/projects/41541858/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/41541858/repository/branches","labels":"https://gitlab.com/api/v4/projects/41541858/labels","events":"https://gitlab.com/api/v4/projects/41541858/events","members":"https://gitlab.com/api/v4/projects/41541858/members","cluster_agents":"https://gitlab.com/api/v4/projects/41541858/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2022-12-03T08:50:08.883Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+new-group-airbute-test-public-sg-test-sg-public-2-test-project-41541858-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":"gitlab_project","import_status":"finished","import_error":null,"open_issues_count":0,"runners_token":"GR1348941JLqwDRN64-__uzBXcgc5","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":false,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":1,"storage_size":125829,"repository_size":125829,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097005750} -{"stream":"projects","data":{"id":25032439,"description":null,"name":"documentation","name_with_namespace":"airbyte.io / documentation","path":"documentation","path_with_namespace":"airbyte.io/documentation","created_at":"2021-03-10T17:16:53.200Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:airbyte.io/documentation.git","http_url_to_repo":"https://gitlab.com/airbyte.io/documentation.git","web_url":"https://gitlab.com/airbyte.io/documentation","readme_url":null,"avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2021-03-10T17:16:53.200Z","namespace":{"id":11266951,"name":"airbyte.io","path":"airbyte.io","kind":"group","full_path":"airbyte.io","parent_id":null,"avatar_url":null,"web_url":"https://gitlab.com/groups/airbyte.io"},"container_registry_image_prefix":"registry.gitlab.com/airbyte.io/documentation","_links":{"self":"https://gitlab.com/api/v4/projects/25032439","issues":"https://gitlab.com/api/v4/projects/25032439/issues","merge_requests":"https://gitlab.com/api/v4/projects/25032439/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/25032439/repository/branches","labels":"https://gitlab.com/api/v4/projects/25032439/labels","events":"https://gitlab.com/api/v4/projects/25032439/events","members":"https://gitlab.com/api/v4/projects/25032439/members","cluster_agents":"https://gitlab.com/api/v4/projects/25032439/cluster_agents"},"packages_enabled":true,"empty_repo":true,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2021-03-11T17:16:53.215Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+airbyte-io-documentation-25032439-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":0,"runners_token":"GR1348941iwELAs9x3hqVbY3Bo_q4","ci_default_git_depth":50,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":0,"storage_size":0,"repository_size":0,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"approvals_before_merge":0,"mirror":false,"external_authorization_classification_label":"","marked_for_deletion_at":null,"marked_for_deletion_on":null,"requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"issues_template":null,"merge_requests_template":null,"merge_pipelines_enabled":false,"merge_trains_enabled":false,"permissions":{"project_access":null,"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097006202} -{"stream":"projects","data":{"id":41551658,"description":null,"name":"Test_project_in_nested_subgroup","name_with_namespace":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Private SubSubG 1 / Test_project_in_nested_subgroup","path":"test_project_in_nested_subgroup","path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup","created_at":"2022-12-02T14:26:55.282Z","default_branch":"main","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup.git","web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup","readme_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup/-/blob/main/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-02T14:26:55.282Z","namespace":{"id":61015181,"name":"Test Private SubSubG 1","path":"test-private-subsubg-1","kind":"group","full_path":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1","parent_id":61014943,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup","_links":{"self":"https://gitlab.com/api/v4/projects/41551658","issues":"https://gitlab.com/api/v4/projects/41551658/issues","merge_requests":"https://gitlab.com/api/v4/projects/41551658/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/41551658/repository/branches","labels":"https://gitlab.com/api/v4/projects/41551658/labels","events":"https://gitlab.com/api/v4/projects/41551658/events","members":"https://gitlab.com/api/v4/projects/41551658/members","cluster_agents":"https://gitlab.com/api/v4/projects/41551658/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2022-12-03T14:26:55.314Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+new-group-airbute-test-public-sg-test-sg-public-2-test-private-41551658-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":0,"runners_token":"GR1348941hyrJGkPgfF9b5KARxqHr","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":1,"storage_size":73400,"repository_size":73400,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":null,"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097006611} -{"stream":"projects","data":{"id":41541892,"description":"Project description","name":"Test Project 2","name_with_namespace":"New Group Airbute / Test Subgroup Airbyte / Test Project 2","path":"test-project-2","path_with_namespace":"new-group-airbute/test-subgroup-airbyte/test-project-2","created_at":"2022-12-02T08:51:27.429Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/test-subgroup-airbyte/test-project-2.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2.git","web_url":"https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2","readme_url":"https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-02T08:51:27.429Z","namespace":{"id":61014863,"name":"Test Subgroup Airbyte","path":"test-subgroup-airbyte","kind":"group","full_path":"new-group-airbute/test-subgroup-airbyte","parent_id":11329647,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2","_links":{"self":"https://gitlab.com/api/v4/projects/41541892","issues":"https://gitlab.com/api/v4/projects/41541892/issues","merge_requests":"https://gitlab.com/api/v4/projects/41541892/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/41541892/repository/branches","labels":"https://gitlab.com/api/v4/projects/41541892/labels","events":"https://gitlab.com/api/v4/projects/41541892/events","members":"https://gitlab.com/api/v4/projects/41541892/members","cluster_agents":"https://gitlab.com/api/v4/projects/41541892/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2022-12-03T08:51:27.465Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+new-group-airbute-test-subgroup-airbyte-test-project-2-41541892-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"enabled","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":"gitlab_project","import_status":"finished","import_error":null,"open_issues_count":0,"runners_token":"GR1348941jzk79ABKrb8iMGhN9aoy","ci_default_git_depth":20,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":false,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":1,"storage_size":2495610,"repository_size":2495610,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097007012} -{"stream":"projects","data":{"id":25032440,"description":"Learn how to use GitLab to support your software development life cycle.","name":"Learn GitLab","name_with_namespace":"airbyte.io / Learn GitLab","path":"learn-gitlab","path_with_namespace":"airbyte.io/learn-gitlab","created_at":"2021-03-10T17:16:53.553Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:airbyte.io/learn-gitlab.git","http_url_to_repo":"https://gitlab.com/airbyte.io/learn-gitlab.git","web_url":"https://gitlab.com/airbyte.io/learn-gitlab","readme_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/blob/master/README.md","avatar_url":"https://gitlab.com/uploads/-/system/project/avatar/25032440/Artboard.jpg","forks_count":0,"star_count":0,"last_activity_at":"2021-03-10T17:16:53.553Z","namespace":{"id":11266951,"name":"airbyte.io","path":"airbyte.io","kind":"group","full_path":"airbyte.io","parent_id":null,"avatar_url":null,"web_url":"https://gitlab.com/groups/airbyte.io"},"container_registry_image_prefix":"registry.gitlab.com/airbyte.io/learn-gitlab","_links":{"self":"https://gitlab.com/api/v4/projects/25032440","issues":"https://gitlab.com/api/v4/projects/25032440/issues","merge_requests":"https://gitlab.com/api/v4/projects/25032440/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/25032440/repository/branches","labels":"https://gitlab.com/api/v4/projects/25032440/labels","events":"https://gitlab.com/api/v4/projects/25032440/events","members":"https://gitlab.com/api/v4/projects/25032440/members","cluster_agents":"https://gitlab.com/api/v4/projects/25032440/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2021-03-11T17:16:53.565Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+airbyte-io-learn-gitlab-25032440-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":"gitlab_project","import_status":"finished","import_error":null,"open_issues_count":12,"runners_token":"GR1348941zm9PmsyMxiKjiwpGxKtf","ci_default_git_depth":50,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":1,"storage_size":254746,"repository_size":251658,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":3088},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"approvals_before_merge":0,"mirror":false,"external_authorization_classification_label":"","marked_for_deletion_at":null,"marked_for_deletion_on":null,"requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"issues_template":null,"merge_requests_template":null,"merge_pipelines_enabled":false,"merge_trains_enabled":false,"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097007434} -{"stream":"projects","data":{"id":25157276,"description":"","name":"New CI Test Project ","name_with_namespace":"New Group Airbute / New CI Test Project ","path":"new-ci-test-project","path_with_namespace":"new-group-airbute/new-ci-test-project","created_at":"2021-03-15T15:08:36.498Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/new-ci-test-project.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/new-ci-test-project.git","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project","readme_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-13T09:39:47.235Z","namespace":{"id":11329647,"name":"New Group Airbute","path":"new-group-airbute","kind":"group","full_path":"new-group-airbute","parent_id":null,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/new-ci-test-project","_links":{"self":"https://gitlab.com/api/v4/projects/25157276","issues":"https://gitlab.com/api/v4/projects/25157276/issues","merge_requests":"https://gitlab.com/api/v4/projects/25157276/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/25157276/repository/branches","labels":"https://gitlab.com/api/v4/projects/25157276/labels","events":"https://gitlab.com/api/v4/projects/25157276/events","members":"https://gitlab.com/api/v4/projects/25157276/members","cluster_agents":"https://gitlab.com/api/v4/projects/25157276/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2021-03-16T15:08:36.518Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+new-group-airbute-new-ci-test-project-25157276-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":31,"runners_token":"GR1348941eMJgWDU69xyyshaNsaTZ","ci_default_git_depth":50,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":3,"storage_size":291925,"repository_size":283115,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":8810,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097007840} -{"stream":"projects","data":{"id":25156633,"description":"","name":"CI Test Project","name_with_namespace":"airbyte.io / CI Test Project","path":"ci-test-project","path_with_namespace":"airbyte.io/ci-test-project","created_at":"2021-03-15T14:46:27.213Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:airbyte.io/ci-test-project.git","http_url_to_repo":"https://gitlab.com/airbyte.io/ci-test-project.git","web_url":"https://gitlab.com/airbyte.io/ci-test-project","readme_url":"https://gitlab.com/airbyte.io/ci-test-project/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-11T10:50:26.066Z","namespace":{"id":11266951,"name":"airbyte.io","path":"airbyte.io","kind":"group","full_path":"airbyte.io","parent_id":null,"avatar_url":null,"web_url":"https://gitlab.com/groups/airbyte.io"},"container_registry_image_prefix":"registry.gitlab.com/airbyte.io/ci-test-project","_links":{"self":"https://gitlab.com/api/v4/projects/25156633","issues":"https://gitlab.com/api/v4/projects/25156633/issues","merge_requests":"https://gitlab.com/api/v4/projects/25156633/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/25156633/repository/branches","labels":"https://gitlab.com/api/v4/projects/25156633/labels","events":"https://gitlab.com/api/v4/projects/25156633/events","members":"https://gitlab.com/api/v4/projects/25156633/members","cluster_agents":"https://gitlab.com/api/v4/projects/25156633/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2021-03-16T14:48:00.805Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":false,"jobs_enabled":true,"snippets_enabled":false,"container_registry_enabled":true,"service_desk_enabled":false,"service_desk_address":"contact-project+airbyte-io-ci-test-project-25156633-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"disabled","builds_access_level":"private","snippets_access_level":"disabled","pages_access_level":"enabled","operations_access_level":"disabled","analytics_access_level":"disabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"disabled","feature_flags_access_level":"disabled","infrastructure_access_level":"disabled","monitor_access_level":"disabled","emails_disabled":false,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":"gitlab_project","import_status":"finished","import_error":null,"open_issues_count":29,"runners_token":"GR1348941WLwrsxTacV58yxzWsvB2","ci_default_git_depth":50,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":null,"shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":2,"storage_size":618659,"repository_size":618659,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":0,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"approvals_before_merge":0,"mirror":false,"external_authorization_classification_label":"","marked_for_deletion_at":null,"marked_for_deletion_on":null,"requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"issues_template":null,"merge_requests_template":null,"merge_pipelines_enabled":false,"merge_trains_enabled":false,"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097008461} -{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1/-/tree/master","commit_id":"eab02a57a4774c5bf2e3921c5281bfcb34886e71","project_id":41541906},"emitted_at":1671097008957} -{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1/-/tree/master","commit_id":"bcdfbfd57c8f3cd6cd65998464bb71a562d49948","project_id":41541858},"emitted_at":1671097009367} -{"stream":"branches","data":{"name":"main","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup/-/tree/main","commit_id":"fb24e6736b3a959a59e49b56d2d83a28ea3ae15b","project_id":41551658},"emitted_at":1671097010096} -{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2/-/tree/master","commit_id":"a804df14057d4443439499a6152638bd5183fa92","project_id":41541892},"emitted_at":1671097010493} -{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/tree/master","commit_id":"baf6f136bb54dca2b2790b975fc5f39ff0471762","project_id":25032440},"emitted_at":1671097010905} -{"stream":"branches","data":{"name":"31-fake-issue-30","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/31-fake-issue-30","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097011198} -{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/master","commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097011199} -{"stream":"branches","data":{"name":"new-test-branch","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097011200} -{"stream":"branches","data":{"name":"new-test-branch-1","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-1","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097011200} -{"stream":"branches","data":{"name":"new-test-branch-10","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-10","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097011201} -{"stream":"commits","data":{"id":"fb24e6736b3a959a59e49b56d2d83a28ea3ae15b","short_id":"fb24e673","created_at":"2022-12-02T14:26:55.000+00:00","parent_ids":[],"title":"Initial commit","message":"Initial commit","author_name":"Alexander Arhipenko","author_email":"integration-test@airbyte.io","authored_date":"2022-12-02T14:26:55.000+00:00","committer_name":"Alexander Arhipenko","committer_email":"integration-test@airbyte.io","committed_date":"2022-12-02T14:26:55.000+00:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup/-/commit/fb24e6736b3a959a59e49b56d2d83a28ea3ae15b","stats":{"additions":92,"deletions":0,"total":92},"project_id":41551658},"emitted_at":1671097014188} -{"stream":"commits","data":{"id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","short_id":"6ad3dd49","created_at":"2021-03-18T12:51:05.000+00:00","parent_ids":["2831d897ba0214f8d3168647e8ad4232b83987ef","028c02d96f40afe9b4d1173c1d0f712dd6d07302"],"title":"Merge branch 'ykurochkin/add-fake-CI-config' into 'master'","message":"Merge branch 'ykurochkin/add-fake-CI-config' into 'master'\n\nadd fake CI config\n\nSee merge request new-group-airbute/new-ci-test-project!3","author_name":"Alexander Arhipenko","author_email":"integration-test@airbyte.io","authored_date":"2021-03-18T12:51:05.000+00:00","committer_name":"Alexander Arhipenko","committer_email":"integration-test@airbyte.io","committed_date":"2021-03-18T12:51:05.000+00:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/6ad3dd49539391774db738c9e7b7d69f2d872c98","stats":{"additions":14,"deletions":0,"total":14},"project_id":25157276},"emitted_at":1671097015406} -{"stream":"commits","data":{"id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","short_id":"028c02d9","created_at":"2021-03-18T14:48:41.000+02:00","parent_ids":["2831d897ba0214f8d3168647e8ad4232b83987ef"],"title":"add fake CI config","message":"add fake CI config\n","author_name":"ykurochkin","author_email":"zhenia.kurochkin@gmail.com","authored_date":"2021-03-18T14:48:41.000+02:00","committer_name":"ykurochkin","committer_email":"zhenia.kurochkin@gmail.com","committed_date":"2021-03-18T14:48:41.000+02:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/028c02d96f40afe9b4d1173c1d0f712dd6d07302","stats":{"additions":14,"deletions":0,"total":14},"project_id":25157276},"emitted_at":1671097015407} -{"stream":"commits","data":{"id":"2831d897ba0214f8d3168647e8ad4232b83987ef","short_id":"2831d897","created_at":"2021-03-15T15:08:36.000+00:00","parent_ids":[],"title":"Initial commit","message":"Initial commit","author_name":"Alexander Arhipenko","author_email":"integration-test@airbyte.io","authored_date":"2021-03-15T15:08:36.000+00:00","committer_name":"Alexander Arhipenko","committer_email":"integration-test@airbyte.io","committed_date":"2021-03-15T15:08:36.000+00:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef","stats":{"additions":2,"deletions":0,"total":2},"project_id":25157276},"emitted_at":1671097015409} -{"stream":"commits","data":{"id":"27329d3afac51fbf2762428e12f2635d1137c549","short_id":"27329d3a","created_at":"2021-02-15T15:52:52.000+00:00","parent_ids":["b362ea7aa65515dc35ff3a93423478b2143e771d"],"title":"Update README.md","message":"Update README.md","author_name":"Administrator","author_email":"admin@example.com","authored_date":"2021-02-15T15:52:52.000+00:00","committer_name":"Administrator","committer_email":"admin@example.com","committed_date":"2021-02-15T15:52:52.000+00:00","trailers":{},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/commit/27329d3afac51fbf2762428e12f2635d1137c549","stats":{"additions":6,"deletions":0,"total":6},"project_id":25156633},"emitted_at":1671097015740} -{"stream":"commits","data":{"id":"b362ea7aa65515dc35ff3a93423478b2143e771d","short_id":"b362ea7a","created_at":"2021-02-15T15:52:03.000+00:00","parent_ids":[],"title":"Initial commit","message":"Initial commit","author_name":"Administrator","author_email":"admin@example.com","authored_date":"2021-02-15T15:52:03.000+00:00","committer_name":"Administrator","committer_email":"admin@example.com","committed_date":"2021-02-15T15:52:03.000+00:00","trailers":{},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/commit/b362ea7aa65515dc35ff3a93423478b2143e771d","stats":{"additions":2,"deletions":0,"total":2},"project_id":25156633},"emitted_at":1671097015741} -{"stream":"group_issue_boards","data":{"id":5099065,"name":"Development","hide_backlog_list":false,"hide_closed_list":false,"project":null,"lists":[],"group":{"id":11329647,"web_url":"https://gitlab.com/groups/new-group-airbute","name":"New Group Airbute"},"group_id":11329647},"emitted_at":1671097016122} -{"stream":"issues","data":{"id":80659730,"iid":13,"project_id":25032440,"title":"Start a free trial of GitLab Gold - no credit card required :rocket:","description":"At any point while using the free version of GitLab you can start a trial of GitLab Gold for free for 30 days. With a GitLab Gold trial, you'll get access to all of the most popular features across all of the paid tiers within GitLab. \n \n:white_check_mark: Reduce risk by requiring team leaders to approve merge requests.\n \n:white_check_mark: Ensure code quality with Multiple code reviews.\n \n:white_check_mark: Run your CI pipelines for up to 50,000 minutes (~9,500 CI builds).\n \n:white_check_mark: Plan and organize parallel development with multiple issue boards.\n \n:white_check_mark: Report on the productivity of each team in your organization by using issue analytics. \n \n:white_check_mark: Dynamically scan Docker images for vulnerabilities before production pushes. \n \n:white_check_mark: Scan security vulnerabilities, license compliance and dependencies in your CI pipelines. \n \n:white_check_mark: Get alerted when your application performance degrades. \n \n:white_check_mark: And so much more, [you can view all the features here](https://about.gitlab.com/pricing/gitlab-com/feature-comparison/). \n \n## Next steps\n* [ ] [Click here to start a trial of GitLab Gold.](https://gitlab.com/-/trial_registrations/new?glm_content=user_onboarding_whats_in_paid_tiers&glm_source=gitlab.com)","state":"opened","created_at":"2021-03-10T17:16:56.091Z","updated_at":"2021-03-10T17:16:56.091Z","closed_at":null,"labels":["Novice"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/13","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":1,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 1 checklist item completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/13","notes":"https://gitlab.com/api/v4/projects/25032440/issues/13/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/13/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#13","relative":"#13","full":"airbyte.io/learn-gitlab#13"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021670} -{"stream":"issues","data":{"id":80659729,"iid":12,"project_id":25032440,"title":"Using Kubernetes Clusters","description":"## Overview\nKubernetes is an open source container orchestration platform. It is designed to automate your management of application containers, from deploying and scaling to operating. Kubernetes orchestration allows you to partition as you go, scaling up and down as necessary. You can respond quickly and efficiently to customer demand while limiting hardware usage within your production environment and minimizing disruption to feature rollouts.\n\n## How you can use Kubernetes with GitLab \nDeploy GitLab on Kubernetes or use GitLab to test and deploy your software on Kubernetes.\nGitLab can be used with or within Kubernetes in three distinct ways:\n\n* [Deploy software from GitLab CI/CD pipelines to Kubernetes](https://docs.gitlab.com/ee/user/project/clusters/)\n* [Use Kubernetes to manage runners attached to your GitLab instance](https://docs.gitlab.com/runner/install/kubernetes.html)\n* [Run the GitLab application and services on a Kubernetes cluster](https://docs.gitlab.com/charts/)\n \nEach approach outlined above can be used with or without the others. For example, an Omnibus GitLab instance running on a virtual machine can deploy software stored within it to Kubernetes through a Docker runner.\n \n## Next steps\n* [ ] Review the documentation on [getting setup with Kubernetes within GitLab](https://docs.gitlab.com/ee/user/project/clusters/) along with what features are included in free.\n* [ ] Select **Projects** (in the top navigation bar) > **Your projects** > select the Project you've already created.\n* [ ] Select **Operations** (in the left sidebar) > **Kubernetes** to get started in your own project.","state":"opened","created_at":"2021-03-10T17:16:56.009Z","updated_at":"2021-03-10T17:16:56.009Z","closed_at":null,"labels":[],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/12","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":3,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 3 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/12","notes":"https://gitlab.com/api/v4/projects/25032440/issues/12/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/12/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#12","relative":"#12","full":"airbyte.io/learn-gitlab#12"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021672} -{"stream":"issues","data":{"id":80659728,"iid":11,"project_id":25032440,"title":"Using Container Registries & Docker images","description":"## Overview \nGitLab CI in conjunction with [GitLab Runner](https://docs.gitlab.com/ee/ci/runners/README.html) can use [Docker Engine](https://www.docker.com/) to test and build any application.\n \nDocker is an open source project that allows you to use predefined images to run applications in independent containers that are run within a single Linux instance. [Docker Hub](https://hub.docker.com/) has a rich database of pre-built images that can be used to test and build your applications.\n \nWhen used with GitLab Continuous Integration (CI), Docker runs each job in a separate and isolated container using the predefined image that is set up in the `.gitlab-ci.yml` file.\n \nThis makes it easier to have a simple and reproducible build environment that can also run on your workstation. The added benefit is that you can test all the commands that we will explore later from your shell, rather than having to test them on a dedicated CI server.\n \n\n\n## Next steps\n* [ ] Review the following documentation: \n * [ ] Review the documentation on [using container registries within GitLab](https://docs.gitlab.com/ee/user/packages/container_registry/).\n * [ ] Review the documentation on [using Docker images with GitLab](https://docs.gitlab.com/omnibus/docker/).\n * [ ] Review the documentation on [installing Docker within GitLab](https://docs.gitlab.com/ee/install/docker.html).\n* [ ] When you're ready, select **Projects** (in the top navigation bar) > **Your projects** > select the Project you've already created.\n* [ ] Once you've selected that project, you can select **Packages** in the left sidebar, then click **Container Registry** to get started.","state":"opened","created_at":"2021-03-10T17:16:55.928Z","updated_at":"2021-03-10T17:16:55.928Z","closed_at":null,"labels":[],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/11","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":6,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 6 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/11","notes":"https://gitlab.com/api/v4/projects/25032440/issues/11/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/11/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#11","relative":"#11","full":"airbyte.io/learn-gitlab#11"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021674} -{"stream":"issues","data":{"id":80659727,"iid":10,"project_id":25032440,"title":"Set up your profile and set your status","description":"# Set up your profile\n\nSetting up your profile helps others in your team to get to know you better. Things like your name, avatar and your role also make it easier to recognize you when collaborating with others. \n\n* :book:[Read the documentation](https://docs.gitlab.com/ee/user/profile/#profile-settings)\n\n# Set your status\n\nYou can provide a custom status message for your user profile along with an emoji that describes it. This may be helpful when you are out of office or otherwise not available. Other users can then take your status into consideration when responding to your issues or assigning work to you.\n\n* :book:[Read the documentation](https://docs.gitlab.com/ee/user/profile/#current-status)\n\n## Next steps\n\n* [ ] Click on your avatar (in the top right of the main navigation bar), then click **Settings**.\n* [ ] Choose an emoji and write something to describe your status in the **Current status** section.\n* [ ] Update your personal settings as you wish in the **Main settings** section and click on **Update profile settings** when done.\n\nAll done! :tada: Now others know who you are and what your status is.","state":"opened","created_at":"2021-03-10T17:16:55.846Z","updated_at":"2021-03-10T17:16:55.846Z","closed_at":null,"labels":["Novice"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/10","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":3,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 3 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/10","notes":"https://gitlab.com/api/v4/projects/25032440/issues/10/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/10/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#10","relative":"#10","full":"airbyte.io/learn-gitlab#10"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021675} -{"stream":"issues","data":{"id":80659726,"iid":9,"project_id":25032440,"title":"Get to know the help resources you have access to","description":"As a free user of GitLab, you have access to multiple help resources. As GitLab is open source, we take a \"community first\" approach. We always recommend first reading the documentation and then reaching out to the community. \n \nPlease note, that the support team at GitLab is reserved for paying customers. However, if you're having account related issues (unable to log in, GDPR and so on), experience a broken feature, or experience issues with GitLab.com availability then please reference our [support page](https://support.gitlab.com/hc/en-us) on how to best get in touch with the team. \n\n## Next steps\n\n* [ ] Review the [GitLab documentation](https://docs.gitlab.com/) where you can easily search for anything and everything related to GitLab.\n* [ ] Review the [GitLab community forum](https://forum.gitlab.com/) where you can get help directly from the community. When able, GitLab employees also participate and assist in answering questions.\n* [ ] Review posts to related to [GitLab on Stack Overflow](https://stackoverflow.com/questions/tagged/gitlab). GitLab has been around since 2013 so there's a good chance someone may have already asked your question.\n* [ ] Follow [@gitlabstatus](https://twitter.com/gitlabstatus) on Twitter for status updates on GitLab.com, or check our [status page](https://status.gitlab.com/) to see if there is a known service outage.\n","state":"opened","created_at":"2021-03-10T17:16:55.760Z","updated_at":"2021-03-10T17:16:55.760Z","closed_at":null,"labels":["Novice"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/9","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":4,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 4 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/9","notes":"https://gitlab.com/api/v4/projects/25032440/issues/9/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/9/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#9","relative":"#9","full":"airbyte.io/learn-gitlab#9"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021677} -{"stream":"issues","data":{"id":80659725,"iid":8,"project_id":25032440,"title":"What's in free and what's in the paid tiers of GitLab","description":"You can always continue to use the free version of GitLab; there is no time limit on your free account. However, it's also helpful to familiarize yourself with the features available in the paid tiers of GitLab.\n \nIf you ever want to upgrade your account, you can do so in your account's [Billing](https://gitlab.com/profile/billings) page. You can also find the GitLab billing page in your account by clicking on your avatar (in the top right of the main navigation bar), then going to **Settings > Billing**.\n \n## Next steps\n* [ ] [View the GitLab pricing page](https://about.gitlab.com/pricing/)\n* [ ] [Start a free trial of GitLab Gold](https://gitlab.com/-/trial_registrations/new?glm_content=user_onboarding_whats_in_paid_tiers&glm_source=gitlab.com)\n \n:tada: That’s it, you should now have a good sense of tiers within GitLab.","state":"opened","created_at":"2021-03-10T17:16:55.680Z","updated_at":"2021-03-10T17:16:55.680Z","closed_at":null,"labels":["Novice"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/8","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":2,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 2 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/8","notes":"https://gitlab.com/api/v4/projects/25032440/issues/8/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/8/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#8","relative":"#8","full":"airbyte.io/learn-gitlab#8"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021679} -{"stream":"issues","data":{"id":80659724,"iid":7,"project_id":25032440,"title":"Invite a colleague","description":"GitLab becomes infinitely more valuable when you utilize it to collaborate with your team. You can manage the groups, users, and their access levels in all of your projects. You can also personalize the access level you give each user, per-project.\n\n* :book:[Read the documentation](https://docs.gitlab.com/ee/user/project/members/)\n\n## Next steps\n\n* [ ] Navigate to the project you created at the beginning of this onboarding. You can quickly access it by selecting **Projects** (in the top navigation bar), then selecting **Your projects**.\n* [ ] Click on **Settings > Members** in the left sidebar.\n* [ ] Invite a colleague by entering their email in the **GitLab member or Email address** field, then click **Invite**.\n\n:tada: That’s it, your invited colleague will now receive an invitation. \n","state":"opened","created_at":"2021-03-10T17:16:55.507Z","updated_at":"2021-03-10T17:16:55.507Z","closed_at":null,"labels":["Novice","To do"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/7","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":3,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 3 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/7","notes":"https://gitlab.com/api/v4/projects/25032440/issues/7/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/7/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#7","relative":"#7","full":"airbyte.io/learn-gitlab#7"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021681} -{"stream":"issues","data":{"id":80659723,"iid":6,"project_id":25032440,"title":"Create a milestone","description":"Milestones in GitLab are a way to track issues and merge requests created to achieve a broader goal in a certain period of time.\n\nMilestones allow you to organize issues and merge requests into a cohesive group, with an optional start date and an optional due date. They can be used for [Agile sprints](https://docs.gitlab.com/ee/user/project/milestones/#milestones-as-agile-sprints) or as [releases](https://docs.gitlab.com/ee/user/project/milestones/#milestones-as-releases). \n\n* :book:[Read the documentation](https://docs.gitlab.com/ee/user/project/milestones/)\n\n## Next steps\n\n* [ ] Select **Projects** (in the top navigation bar) > **Your Projects** > select the Project you've already created.\n* [ ] Click on **Issues** > **Milestones** in the left sidebar.\n* [ ] You’ll land on the **Milestones** page. Click **New milestone**.\n* [ ] Once you’re on the **New milestone** page, name your milestone, add its start and end dates, then click **Create milestone**.\n\nAll done! :tada: You can now assign issues to your new milestone. You can do that from the right sidebar while viewing an issue.","state":"opened","created_at":"2021-03-10T17:16:55.414Z","updated_at":"2021-03-10T17:16:55.414Z","closed_at":null,"labels":["Novice","To do"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/6","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":4,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 4 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/6","notes":"https://gitlab.com/api/v4/projects/25032440/issues/6/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/6/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#6","relative":"#6","full":"airbyte.io/learn-gitlab#6"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021682} -{"stream":"issues","data":{"id":80659722,"iid":5,"project_id":25032440,"title":"Submit your first Merge Request","description":"Merge requests (MR) allow you to visualize and collaborate on the proposed changes to source code that exist as commits on a given Git branch. A merge request is the basis of GitLab as a code collaboration and version control platform. It is as simple as the name implies: a request to merge one branch into another.\n\n* :book:[Read the documentation](https://docs.gitlab.com/ee/user/project/merge_requests/)\n \n## Next steps\n* [ ] Select **Projects** in the top navigation > **Your Projects** > select the Project you've already created.\n* [ ] Once you've selected that project, you can select **Merge Requests** in the left navigation.\n* [ ] On the **New Merge Request** page, start by filling in the title and description for the merge request. If there are already commits on the branch, the title will be prefilled with the first line of the first commit message, and the description will be prefilled with any additional lines in the commit message.\n* [ ] When you're ready you can submit your first MR. \n \nPro Tip: If you reference an issue in your merge request it will automatically close that issue for you :muscle: ","state":"opened","created_at":"2021-03-10T17:16:55.317Z","updated_at":"2021-03-10T17:16:55.317Z","closed_at":null,"labels":["Novice","To do"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/5","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":4,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 4 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/5","notes":"https://gitlab.com/api/v4/projects/25032440/issues/5/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/5/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#5","relative":"#5","full":"airbyte.io/learn-gitlab#5"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021684} -{"stream":"issues","data":{"id":80659721,"iid":4,"project_id":25032440,"title":"Set up CI/CD","description":"GitLab CI/CD is a tool built into GitLab for software development through the [continuous methodologies](https://docs.gitlab.com/ee/ci/introduction/index.html#introduction-to-cicd-methodologies):\n\n* Continuous Integration (CI)\n* Continuous Delivery (CD)\n* Continuous Deployment (CD)\n \nContinuous Integration works by pushing small changes to your application’s codebase hosted in a Git repository, and, to every push, run a pipeline of scripts to build, test, and validate the code changes before merging them into the main branch.\n \nContinuous Delivery and Deployment consist of a step further CI, deploying your application to production at every push to the default branch of the repository.\n \nThese methodologies allow you to catch bugs and errors early in the development cycle, ensuring that all the code deployed to production complies with the code standards you established for your app.\n \n* :book:[Read the documentation](https://docs.gitlab.com/ee/ci/introduction/index.html)\n* :clapper:[Watch a Demo](https://www.youtube.com/watch?v=1iXFbchozdY)\n \n## Next steps\n \n* [ ] To start we recommend reviewing the following documentation:\n * [ ] [How GitLab CI/CD works.](https://docs.gitlab.com/ee/ci/introduction/index.html#how-gitlab-cicd-works)\n * [ ] [Fundamental pipeline architectures.](https://docs.gitlab.com/ee/ci/pipelines/pipeline_architectures.html)\n * [ ] [GitLab CI/CD basic workflow.](https://docs.gitlab.com/ee/ci/introduction/index.html#basic-cicd-workflow)\n * [ ] [Step-by-step guide for writing .gitlab-ci.yml for the first time.](https://docs.gitlab.com/ee/user/project/pages/getting_started_part_four.html)\n* [ ] When you're ready select **Projects** (in the top navigation bar) > **Your projects** > select the Project you've already created.\n* [ ] Select **CI / CD** in the left navigation to start setting up CI / CD in your project.","state":"opened","created_at":"2021-03-10T17:16:55.196Z","updated_at":"2021-03-10T17:16:55.196Z","closed_at":null,"labels":["Novice","To do"],"assignees":[8375961],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/learn-gitlab/-/issues/4","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":7,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":true,"task_status":"0 of 7 checklist items completed","_links":{"self":"https://gitlab.com/api/v4/projects/25032440/issues/4","notes":"https://gitlab.com/api/v4/projects/25032440/issues/4/notes","award_emoji":"https://gitlab.com/api/v4/projects/25032440/issues/4/award_emoji","project":"https://gitlab.com/api/v4/projects/25032440","closed_as_duplicate_of":null},"references":{"short":"#4","relative":"#4","full":"airbyte.io/learn-gitlab#4"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":null,"epic":null,"iteration":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097021686} -{"stream":"jobs","data":{"id":1108959782,"status":"failed","stage":"test","name":"test-code-job2","ref":"master","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:51:06.294Z","started_at":"2021-03-18T12:51:07.646Z","finished_at":"2021-03-18T12:51:51.309Z","duration":43.662407,"queued_duration":1.180926,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959782","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2200,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272632767,"runner_id":380986,"commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097027088} -{"stream":"jobs","data":{"id":1108959779,"status":"failed","stage":"test","name":"test-code-job1","ref":"master","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:51:06.279Z","started_at":"2021-03-18T12:51:07.943Z","finished_at":"2021-03-18T12:51:50.943Z","duration":42.999853,"queued_duration":1.349274,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959779","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2182,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272632767,"runner_id":380987,"commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097027088} -{"stream":"jobs","data":{"id":1108952832,"status":"failed","stage":"test","name":"test-code-job2","ref":"ykurochkin/add-fake-CI-config","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:48:49.222Z","started_at":"2021-03-18T12:48:50.732Z","finished_at":"2021-03-18T12:49:37.961Z","duration":47.229034,"queued_duration":1.422541,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952832","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2223,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272631271,"runner_id":44949,"commit_id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","project_id":25157276},"emitted_at":1671097027489} -{"stream":"jobs","data":{"id":1108952831,"status":"failed","stage":"test","name":"test-code-job1","ref":"ykurochkin/add-fake-CI-config","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:48:49.199Z","started_at":"2021-03-18T12:48:50.064Z","finished_at":"2021-03-18T12:49:34.277Z","duration":44.212296,"queued_duration":0.735172,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952831","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2205,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272631271,"runner_id":380987,"commit_id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","project_id":25157276},"emitted_at":1671097027489} -{"stream":"project_milestones","data":{"id":1943705,"iid":51,"project_id":25157276,"title":"Project Milestone 51","description":null,"state":"active","created_at":"2021-03-15T15:33:16.915Z","updated_at":"2021-03-15T15:33:16.915Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/51"},"emitted_at":1671097030670} -{"stream":"project_milestones","data":{"id":1943704,"iid":50,"project_id":25157276,"title":"Project Milestone 50","description":null,"state":"active","created_at":"2021-03-15T15:33:16.329Z","updated_at":"2021-03-15T15:33:16.329Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/50"},"emitted_at":1671097030670} -{"stream":"project_milestones","data":{"id":1943703,"iid":49,"project_id":25157276,"title":"Project Milestone 49","description":null,"state":"active","created_at":"2021-03-15T15:33:15.960Z","updated_at":"2021-03-15T15:33:15.960Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/49"},"emitted_at":1671097030670} -{"stream":"project_milestones","data":{"id":1943702,"iid":48,"project_id":25157276,"title":"Project Milestone 48","description":null,"state":"active","created_at":"2021-03-15T15:33:15.604Z","updated_at":"2021-03-15T15:33:15.604Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/48"},"emitted_at":1671097030670} -{"stream":"project_milestones","data":{"id":1943701,"iid":47,"project_id":25157276,"title":"Project Milestone 47","description":null,"state":"active","created_at":"2021-03-15T15:33:15.232Z","updated_at":"2021-03-15T15:33:15.232Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/47"},"emitted_at":1671097030670} -{"stream":"project_milestones","data":{"id":1943700,"iid":46,"project_id":25157276,"title":"Project Milestone 46","description":null,"state":"active","created_at":"2021-03-15T15:33:14.860Z","updated_at":"2021-03-15T15:33:14.860Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/46"},"emitted_at":1671097030670} -{"stream":"project_milestones","data":{"id":1943699,"iid":45,"project_id":25157276,"title":"Project Milestone 45","description":null,"state":"active","created_at":"2021-03-15T15:33:14.450Z","updated_at":"2021-03-15T15:33:14.450Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/45"},"emitted_at":1671097030670} -{"stream":"project_milestones","data":{"id":1943698,"iid":44,"project_id":25157276,"title":"Project Milestone 44","description":null,"state":"active","created_at":"2021-03-15T15:33:14.042Z","updated_at":"2021-03-15T15:33:14.042Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/44"},"emitted_at":1671097030670} -{"stream":"project_milestones","data":{"id":1943697,"iid":43,"project_id":25157276,"title":"Project Milestone 43","description":null,"state":"active","created_at":"2021-03-15T15:33:13.668Z","updated_at":"2021-03-15T15:33:13.668Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/43"},"emitted_at":1671097030671} -{"stream":"project_milestones","data":{"id":1943696,"iid":42,"project_id":25157276,"title":"Project Milestone 42","description":null,"state":"active","created_at":"2021-03-15T15:33:13.240Z","updated_at":"2021-03-15T15:33:13.240Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/42"},"emitted_at":1671097030671} -{"stream":"group_milestones","data":{"id":1943775,"iid":21,"group_id":11329647,"title":"Group Milestone 21","description":null,"state":"active","created_at":"2021-03-15T16:01:02.125Z","updated_at":"2021-03-15T16:01:02.125Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/21"},"emitted_at":1671097031789} -{"stream":"group_milestones","data":{"id":1943774,"iid":20,"group_id":11329647,"title":"Group Milestone 20","description":null,"state":"active","created_at":"2021-03-15T16:01:01.682Z","updated_at":"2021-03-15T16:01:01.682Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/20"},"emitted_at":1671097031790} -{"stream":"group_milestones","data":{"id":1943773,"iid":19,"group_id":11329647,"title":"Group Milestone 19","description":null,"state":"active","created_at":"2021-03-15T16:01:01.067Z","updated_at":"2021-03-15T16:01:01.067Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/19"},"emitted_at":1671097031790} -{"stream":"group_milestones","data":{"id":1943772,"iid":18,"group_id":11329647,"title":"Group Milestone 18","description":null,"state":"active","created_at":"2021-03-15T16:01:00.572Z","updated_at":"2021-03-15T16:01:00.572Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/18"},"emitted_at":1671097031790} -{"stream":"group_milestones","data":{"id":1943771,"iid":17,"group_id":11329647,"title":"Group Milestone 17","description":null,"state":"active","created_at":"2021-03-15T16:01:00.136Z","updated_at":"2021-03-15T16:01:00.136Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/17"},"emitted_at":1671097031790} -{"stream":"group_milestones","data":{"id":1943770,"iid":16,"group_id":11329647,"title":"Group Milestone 16","description":null,"state":"active","created_at":"2021-03-15T16:00:59.507Z","updated_at":"2021-03-15T16:00:59.507Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/16"},"emitted_at":1671097031790} -{"stream":"group_milestones","data":{"id":1943769,"iid":15,"group_id":11329647,"title":"Group Milestone 15","description":null,"state":"active","created_at":"2021-03-15T16:00:59.133Z","updated_at":"2021-03-15T16:00:59.133Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/15"},"emitted_at":1671097031790} -{"stream":"group_milestones","data":{"id":1943768,"iid":14,"group_id":11329647,"title":"Group Milestone 14","description":null,"state":"active","created_at":"2021-03-15T16:00:58.763Z","updated_at":"2021-03-15T16:00:58.763Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/14"},"emitted_at":1671097031790} -{"stream":"group_milestones","data":{"id":1943767,"iid":13,"group_id":11329647,"title":"Group Milestone 13","description":null,"state":"active","created_at":"2021-03-15T16:00:58.315Z","updated_at":"2021-03-15T16:00:58.315Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/13"},"emitted_at":1671097031791} -{"stream":"group_milestones","data":{"id":1943766,"iid":12,"group_id":11329647,"title":"Group Milestone 12","description":null,"state":"active","created_at":"2021-03-15T16:00:57.929Z","updated_at":"2021-03-15T16:00:57.929Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/12"},"emitted_at":1671097031791} -{"stream":"project_members","data":{"access_level":40,"created_at":"2022-12-02T08:52:12.187Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":41541906},"emitted_at":1671097036197} -{"stream":"project_members","data":{"access_level":40,"created_at":"2022-12-02T08:50:10.348Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":41541858},"emitted_at":1671097036605} -{"stream":"project_members","data":{"access_level":40,"created_at":"2022-12-02T08:51:28.434Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":41541892},"emitted_at":1671097037460} -{"stream":"project_members","data":{"access_level":40,"created_at":"2021-03-10T17:16:54.405Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":25032440},"emitted_at":1671097037834} -{"stream":"project_members","data":{"access_level":40,"created_at":"2021-03-15T15:08:36.746Z","created_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":25157276},"emitted_at":1671097038138} -{"stream":"project_members","data":{"access_level":40,"created_at":"2021-03-15T14:46:31.550Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":25156633},"emitted_at":1671097038434} -{"stream":"group_members","data":{"access_level":50,"created_at":"2021-03-15T15:55:53.658Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":11329647},"emitted_at":1671097038962} -{"stream":"group_members","data":{"access_level":30,"created_at":"2021-03-15T15:55:53.998Z","created_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"expires_at":null,"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin","membership_state":"active","group_id":11329647},"emitted_at":1671097038963} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:46:22.834Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014882},"emitted_at":1671097039269} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:54:42.303Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015181},"emitted_at":1671097039575} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:56:21.862Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015232},"emitted_at":1671097039891} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:56:34.266Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015239},"emitted_at":1671097040622} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:47:02.469Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014902},"emitted_at":1671097041625} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:55:27.120Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015202},"emitted_at":1671097042146} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:48:04.786Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014943},"emitted_at":1671097042555} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:45:53.544Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014863},"emitted_at":1671097043058} -{"stream":"project_labels","data":{"id":19117004,"name":"Label 1","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044084} -{"stream":"project_labels","data":{"id":19117017,"name":"Label 10","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000080","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044085} -{"stream":"project_labels","data":{"id":19117018,"name":"Label 11","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044085} -{"stream":"project_labels","data":{"id":19117019,"name":"Label 12","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044086} -{"stream":"project_labels","data":{"id":19117020,"name":"Label 13","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044086} -{"stream":"project_labels","data":{"id":19117021,"name":"Label 14","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044087} -{"stream":"project_labels","data":{"id":19117022,"name":"Label 15","description":null,"description_html":"","text_color":"#FFFFFF","color":"#0000ff","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044088} -{"stream":"project_labels","data":{"id":19117023,"name":"Label 16","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044088} -{"stream":"project_labels","data":{"id":19117024,"name":"Label 17","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044089} -{"stream":"project_labels","data":{"id":19117025,"name":"Label 18","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"priority":null,"is_project_label":false,"project_id":41541906},"emitted_at":1671097044089} -{"stream":"group_labels","data":{"id":19117004,"name":"Label 1","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"group_id":11329647},"emitted_at":1671097052176} -{"stream":"group_labels","data":{"id":19117017,"name":"Label 10","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000080","subscribed":false,"group_id":11329647},"emitted_at":1671097052176} -{"stream":"group_labels","data":{"id":19117018,"name":"Label 11","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"group_id":11329647},"emitted_at":1671097052176} -{"stream":"group_labels","data":{"id":19117019,"name":"Label 12","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} -{"stream":"group_labels","data":{"id":19117020,"name":"Label 13","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} -{"stream":"group_labels","data":{"id":19117021,"name":"Label 14","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} -{"stream":"group_labels","data":{"id":19117022,"name":"Label 15","description":null,"description_html":"","text_color":"#FFFFFF","color":"#0000ff","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} -{"stream":"group_labels","data":{"id":19117023,"name":"Label 16","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} -{"stream":"group_labels","data":{"id":19117024,"name":"Label 17","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} -{"stream":"group_labels","data":{"id":19117025,"name":"Label 18","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"group_id":11329647},"emitted_at":1671097052177} -{"stream":"merge_requests","data":{"id":92594931,"iid":3,"project_id":25157276,"title":"add fake CI config","description":"","state":"merged","created_at":"2021-03-18T12:49:13.091Z","updated_at":"2021-03-18T12:51:06.319Z","merge_user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merged_at":"2021-03-18T12:51:06.470Z","closed_at":null,"target_branch":"master","source_branch":"ykurochkin/add-fake-CI-config","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"not_open","sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","merge_commit_sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!3","references":{"short":"!3","relative":"!3","full":"new-group-airbute/new-ci-test-project!3"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":8375961},"emitted_at":1671097062930} -{"stream":"merge_requests","data":{"id":92593913,"iid":2,"project_id":25157276,"title":"update readme.md","description":"","state":"opened","created_at":"2021-03-18T12:42:30.200Z","updated_at":"2021-03-18T12:42:30.200Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/test-branch","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!2","references":{"short":"!2","relative":"!2","full":"new-group-airbute/new-ci-test-project!2"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097062930} -{"stream":"merge_requests","data":{"id":92111504,"iid":1,"project_id":25157276,"title":"Draft: Resolve \"Fake Issue 30\"","description":"Closes #31","state":"opened","created_at":"2021-03-15T16:08:05.071Z","updated_at":"2021-03-15T16:08:05.071Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"31-fake-issue-30","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[8375961],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":["bug"],"draft":true,"work_in_progress":true,"merge_when_pipeline_succeeds":false,"merge_status":"cannot_be_merged","detailed_merge_status":"draft_status","sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!1","references":{"short":"!1","relative":"!1","full":"new-group-airbute/new-ci-test-project!1"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":true,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097062930} -{"stream":"merge_requests","data":{"id":92098762,"iid":30,"project_id":25156633,"title":"Id blanditiis consequatur ut.","description":"##### Voluptatum\nPorro et quo. Laborum molestias ducimus. Labore dolorum adipisci. Quisquam est quis. Sint accusamus maxime.\n* Veritatis. \n* Eos. \n* Adipisci. \n* Quibusdam. \n* Sint. \n* Consequuntur. \n* Hic. \n* Voluptate. \n* Velit.","state":"opened","created_at":"2021-02-15T15:55:38.117Z","updated_at":"2021-02-15T15:55:38.117Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"laudantium-unde-et-iste-et","user_notes_count":15,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["asperiores-ex","quidem-labore","sed-consequuntur"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"d49703b85913ee7a8c85e1893057ef4cdb06ff85","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!30","references":{"short":"!30","relative":"!30","full":"airbyte.io/ci-test-project!30"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/30","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063742} -{"stream":"merge_requests","data":{"id":92098761,"iid":29,"project_id":25156633,"title":"Fugiat aut voluptatem voluptas.","description":"###### Unde\nEligendi nemo quam. Veritatis delectus iure. Placeat ut odit. Officiis accusantium sit. Eos sequi cupiditate.\n# Eum","state":"opened","created_at":"2021-02-15T15:55:34.534Z","updated_at":"2021-02-15T15:55:34.534Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"ea-dolor-quia-et-sint","user_notes_count":4,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["earum-eaque","nisi-et","sed-voluptatem"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"45afadfbf4eb1a9d6468950b23e8557bf72445fa","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!29","references":{"short":"!29","relative":"!29","full":"airbyte.io/ci-test-project!29"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/29","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063743} -{"stream":"merge_requests","data":{"id":92098758,"iid":28,"project_id":25156633,"title":"Delectus sit quod repellendus.","description":"###### Corporis\nMolestias eius corrupti. Est maiores ut. Deleniti itaque deserunt. Perspiciatis quis et. Non et quia.\n### Dolorum\nNihil at et. Eligendi recusandae omnis. Eaque ratione dolorem.\n### Quam\nRem ad vel. Officiis sint voluptatem. Asperiores odit non.\n0. Hic. \n1. Labore. \n2. Voluptates. \n3. Dolores. \n4. Laborum. \n5. Non. \n6. Odit.","state":"opened","created_at":"2021-02-15T15:55:31.164Z","updated_at":"2021-02-15T15:55:31.164Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"ipsum-consequatur-et-in-et","user_notes_count":19,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["nisi-et","omnis-assumenda","ut-incidunt"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"5b8695fe02d2856fa9e3249d757aea89832b8d2e","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!28","references":{"short":"!28","relative":"!28","full":"airbyte.io/ci-test-project!28"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/28","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063743} -{"stream":"merge_requests","data":{"id":92098756,"iid":27,"project_id":25156633,"title":"Odio aut et rerum.","description":"##### Aut\nNon labore nemo. Architecto ullam ut. Consequatur sit aut. Qui officia consequatur. Blanditiis facilis consequatur.\n```ruby\nError.\n```","state":"opened","created_at":"2021-02-15T15:55:27.534Z","updated_at":"2021-02-15T15:55:27.534Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"sapiente-et-possimus-neque-est","user_notes_count":14,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["animi-exercitationem","ex-commodi","voluptas-officiis"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"e604947173cd56863979030ed39bcdf7dcf8727a","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!27","references":{"short":"!27","relative":"!27","full":"airbyte.io/ci-test-project!27"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/27","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063744} -{"stream":"merge_requests","data":{"id":92098753,"iid":26,"project_id":25156633,"title":"Nihil possimus et nulla.","description":"##### Eveniet\nVeritatis incidunt impedit. Sunt voluptas nisi. Ut quia et. Optio nihil recusandae. Eum ipsam illo.\n~Odio~ sed repudiandae. Cum consequuntur id. Quas molestias magnam.","state":"opened","created_at":"2021-02-15T15:55:24.768Z","updated_at":"2021-02-15T15:55:24.768Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"qui-in-quod-nam-voluptatem","user_notes_count":9,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["architecto-vel","in-qui","voluptatem-saepe"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"6d473efbe556db92e5319591f393df63a3b4fa34","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!26","references":{"short":"!26","relative":"!26","full":"airbyte.io/ci-test-project!26"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/26","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063744} -{"stream":"merge_requests","data":{"id":92098751,"iid":25,"project_id":25156633,"title":"Cum non sint explicabo.","description":"### Et\nAd omnis ab. Sint eveniet explicabo. Ut voluptatum velit. Corrupti dignissimos ipsa. Ad commodi consequatur.\n## Tenetur","state":"opened","created_at":"2021-02-15T15:55:21.303Z","updated_at":"2021-02-15T15:55:21.303Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"aut-deleniti-est-voluptatum-repellat","user_notes_count":7,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["animi-exercitationem","ex-commodi","nisi-et"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"01a2afda641dec50caf71ec92f898f9243e357f8","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!25","references":{"short":"!25","relative":"!25","full":"airbyte.io/ci-test-project!25"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/25","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063744} -{"stream":"merge_requests","data":{"id":92098745,"iid":24,"project_id":25156633,"title":"Dolores et cumque fuga.","description":"###### Et\nVoluptates quo modi. Ut nihil autem. Enim id sint. Reiciendis quia molestiae. Nobis sit autem.\n### Occaecati\nEt exercitationem quam. Dolor nam quia. Eius consequatur corporis.\n* Sunt. \n* Doloremque. \n* Itaque. \n* Odit. \n* Aliquam.","state":"opened","created_at":"2021-02-15T15:55:18.655Z","updated_at":"2021-02-15T15:55:18.655Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"modi-et-quam-sunt-consequatur","user_notes_count":15,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["architecto-vel","ex-commodi","odio-ut"],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"98e5e7c52ceeb55fd04d3f35bb461361770a3e79","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!24","references":{"short":"!24","relative":"!24","full":"airbyte.io/ci-test-project!24"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/24","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097063745} -{"stream":"merge_request_commits","data":{"id":92594931,"iid":3,"project_id":25157276,"title":"add fake CI config","description":"","state":"merged","created_at":"2021-03-18T12:49:13.091Z","updated_at":"2021-03-18T12:51:06.319Z","merged_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merge_user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merged_at":"2021-03-18T12:51:06.470Z","closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/add-fake-CI-config","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"not_open","sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","merge_commit_sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!3","references":{"short":"!3","relative":"!3","full":"new-group-airbute/new-ci-test-project!3"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"1","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271","before_sha":"0000000000000000000000000000000000000000","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:48:50.166Z","finished_at":"2021-03-18T12:49:38.084Z","committed_at":null,"duration":47,"queued_duration":null,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":true,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272631271","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":3},"emitted_at":1671097066930} -{"stream":"merge_request_commits","data":{"id":92593913,"iid":2,"project_id":25157276,"title":"update readme.md","description":"","state":"opened","created_at":"2021-03-18T12:42:30.200Z","updated_at":"2021-03-18T12:42:30.200Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/test-branch","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!2","references":{"short":"!2","relative":"!2","full":"new-group-airbute/new-ci-test-project!2"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"1","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":2},"emitted_at":1671097067325} -{"stream":"merge_request_commits","data":{"id":92111504,"iid":1,"project_id":25157276,"title":"Draft: Resolve \"Fake Issue 30\"","description":"Closes #31","state":"opened","created_at":"2021-03-15T16:08:05.071Z","updated_at":"2021-03-15T16:08:05.071Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"31-fake-issue-30","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"}],"assignee":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":["bug"],"draft":true,"work_in_progress":true,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"cannot_be_merged","detailed_merge_status":"draft_status","sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!1","references":{"short":"!1","relative":"!1","full":"new-group-airbute/new-ci-test-project!1"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":true,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":null,"latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":1},"emitted_at":1671097067939} -{"stream":"merge_request_commits","data":{"id":92098762,"iid":30,"project_id":25156633,"title":"Id blanditiis consequatur ut.","description":"##### Voluptatum\nPorro et quo. Laborum molestias ducimus. Labore dolorum adipisci. Quisquam est quis. Sint accusamus maxime.\n* Veritatis. \n* Eos. \n* Adipisci. \n* Quibusdam. \n* Sint. \n* Consequuntur. \n* Hic. \n* Voluptate. \n* Velit.","state":"opened","created_at":"2021-02-15T15:55:38.117Z","updated_at":"2021-02-15T15:55:38.117Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"laudantium-unde-et-iste-et","user_notes_count":15,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["asperiores-ex","quidem-labore","sed-consequuntur"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"d49703b85913ee7a8c85e1893057ef4cdb06ff85","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!30","references":{"short":"!30","relative":"!30","full":"airbyte.io/ci-test-project!30"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/30","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"18","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"d49703b85913ee7a8c85e1893057ef4cdb06ff85","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":30},"emitted_at":1671097068716} -{"stream":"merge_request_commits","data":{"id":92098761,"iid":29,"project_id":25156633,"title":"Fugiat aut voluptatem voluptas.","description":"###### Unde\nEligendi nemo quam. Veritatis delectus iure. Placeat ut odit. Officiis accusantium sit. Eos sequi cupiditate.\n# Eum","state":"opened","created_at":"2021-02-15T15:55:34.534Z","updated_at":"2021-02-15T15:55:34.534Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ea-dolor-quia-et-sint","user_notes_count":4,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["earum-eaque","nisi-et","sed-voluptatem"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"45afadfbf4eb1a9d6468950b23e8557bf72445fa","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!29","references":{"short":"!29","relative":"!29","full":"airbyte.io/ci-test-project!29"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/29","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"17","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"45afadfbf4eb1a9d6468950b23e8557bf72445fa","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":29},"emitted_at":1671097069126} -{"stream":"merge_request_commits","data":{"id":92098758,"iid":28,"project_id":25156633,"title":"Delectus sit quod repellendus.","description":"###### Corporis\nMolestias eius corrupti. Est maiores ut. Deleniti itaque deserunt. Perspiciatis quis et. Non et quia.\n### Dolorum\nNihil at et. Eligendi recusandae omnis. Eaque ratione dolorem.\n### Quam\nRem ad vel. Officiis sint voluptatem. Asperiores odit non.\n0. Hic. \n1. Labore. \n2. Voluptates. \n3. Dolores. \n4. Laborum. \n5. Non. \n6. Odit.","state":"opened","created_at":"2021-02-15T15:55:31.164Z","updated_at":"2021-02-15T15:55:31.164Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ipsum-consequatur-et-in-et","user_notes_count":19,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["nisi-et","omnis-assumenda","ut-incidunt"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"5b8695fe02d2856fa9e3249d757aea89832b8d2e","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!28","references":{"short":"!28","relative":"!28","full":"airbyte.io/ci-test-project!28"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/28","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"15","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"5b8695fe02d2856fa9e3249d757aea89832b8d2e","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":28},"emitted_at":1671097069577} -{"stream":"merge_request_commits","data":{"id":92098756,"iid":27,"project_id":25156633,"title":"Odio aut et rerum.","description":"##### Aut\nNon labore nemo. Architecto ullam ut. Consequatur sit aut. Qui officia consequatur. Blanditiis facilis consequatur.\n```ruby\nError.\n```","state":"opened","created_at":"2021-02-15T15:55:27.534Z","updated_at":"2021-02-15T15:55:27.534Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"sapiente-et-possimus-neque-est","user_notes_count":14,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["animi-exercitationem","ex-commodi","voluptas-officiis"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"e604947173cd56863979030ed39bcdf7dcf8727a","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!27","references":{"short":"!27","relative":"!27","full":"airbyte.io/ci-test-project!27"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/27","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"5","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"e604947173cd56863979030ed39bcdf7dcf8727a","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":27},"emitted_at":1671097070040} -{"stream":"merge_request_commits","data":{"id":92098753,"iid":26,"project_id":25156633,"title":"Nihil possimus et nulla.","description":"##### Eveniet\nVeritatis incidunt impedit. Sunt voluptas nisi. Ut quia et. Optio nihil recusandae. Eum ipsam illo.\n~Odio~ sed repudiandae. Cum consequuntur id. Quas molestias magnam.","state":"opened","created_at":"2021-02-15T15:55:24.768Z","updated_at":"2021-02-15T15:55:24.768Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"qui-in-quod-nam-voluptatem","user_notes_count":9,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["architecto-vel","in-qui","voluptatem-saepe"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"6d473efbe556db92e5319591f393df63a3b4fa34","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!26","references":{"short":"!26","relative":"!26","full":"airbyte.io/ci-test-project!26"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/26","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"18","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"6d473efbe556db92e5319591f393df63a3b4fa34","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":26},"emitted_at":1671097070500} -{"stream":"merge_request_commits","data":{"id":92098751,"iid":25,"project_id":25156633,"title":"Cum non sint explicabo.","description":"### Et\nAd omnis ab. Sint eveniet explicabo. Ut voluptatum velit. Corrupti dignissimos ipsa. Ad commodi consequatur.\n## Tenetur","state":"opened","created_at":"2021-02-15T15:55:21.303Z","updated_at":"2021-02-15T15:55:21.303Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"aut-deleniti-est-voluptatum-repellat","user_notes_count":7,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["animi-exercitationem","ex-commodi","nisi-et"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"01a2afda641dec50caf71ec92f898f9243e357f8","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!25","references":{"short":"!25","relative":"!25","full":"airbyte.io/ci-test-project!25"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/25","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"5","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"01a2afda641dec50caf71ec92f898f9243e357f8","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":25},"emitted_at":1671097070917} -{"stream":"merge_request_commits","data":{"id":92098745,"iid":24,"project_id":25156633,"title":"Dolores et cumque fuga.","description":"###### Et\nVoluptates quo modi. Ut nihil autem. Enim id sint. Reiciendis quia molestiae. Nobis sit autem.\n### Occaecati\nEt exercitationem quam. Dolor nam quia. Eius consequatur corporis.\n* Sunt. \n* Doloremque. \n* Itaque. \n* Odit. \n* Aliquam.","state":"opened","created_at":"2021-02-15T15:55:18.655Z","updated_at":"2021-02-15T15:55:18.655Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"modi-et-quam-sunt-consequatur","user_notes_count":15,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25156633,"target_project_id":25156633,"labels":["architecto-vel","ex-commodi","odio-ut"],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"98e5e7c52ceeb55fd04d3f35bb461361770a3e79","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":null,"reference":"!24","references":{"short":"!24","relative":"!24","full":"airbyte.io/ci-test-project!24"},"web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/24","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"6","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"27329d3afac51fbf2762428e12f2635d1137c549","head_sha":"98e5e7c52ceeb55fd04d3f35bb461361770a3e79","start_sha":"27329d3afac51fbf2762428e12f2635d1137c549"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":24},"emitted_at":1671097071420} -{"stream":"releases","data":{"name":"First release","tag_name":"fake-tag-6","description":"Test Release","created_at":"2021-03-18T12:44:12.497Z","released_at":"2021-03-18T12:44:12.497Z","upcoming_release":false,"milestones":[1943704],"commit_path":"/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef","tag_path":"/new-group-airbute/new-ci-test-project/-/tags/fake-tag-6","assets":{"count":4,"sources":[{"format":"zip","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.zip"},{"format":"tar.gz","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.gz"},{"format":"tar.bz2","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.bz2"},{"format":"tar","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar"}],"links":[]},"evidences":[{"sha":"a616fdca9312ca5aa451bc1060ce91a672fd24cc0f4d","filepath":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/evidences/855895.json","collected_at":"2021-03-18T12:44:12.650Z"}],"_links":{"self":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6","edit_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/edit"},"author_id":8375961,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097084736} -{"stream":"tags","data":{"name":"fake-tag-1","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088216} -{"stream":"tags","data":{"name":"fake-tag-10","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088216} -{"stream":"tags","data":{"name":"fake-tag-11","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} -{"stream":"tags","data":{"name":"fake-tag-12","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} -{"stream":"tags","data":{"name":"fake-tag-13","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} -{"stream":"tags","data":{"name":"fake-tag-14","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} -{"stream":"tags","data":{"name":"fake-tag-15","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} -{"stream":"tags","data":{"name":"fake-tag-16","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} -{"stream":"tags","data":{"name":"fake-tag-17","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} -{"stream":"tags","data":{"name":"fake-tag-18","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097088217} -{"stream":"pipelines","data":{"id":272632767,"iid":2,"project_id":25157276,"sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","ref":"master","status":"failed","source":"push","created_at":"2021-03-18T12:51:06.262Z","updated_at":"2021-03-18T12:51:52.007Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767"},"emitted_at":1671097092622} -{"stream":"pipelines","data":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271"},"emitted_at":1671097092623} -{"stream":"pipelines_extended","data":{"id":272632767,"iid":2,"project_id":25157276,"sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","ref":"master","status":"failed","source":"push","created_at":"2021-03-18T12:51:06.262Z","updated_at":"2021-03-18T12:51:52.007Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767","before_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:51:07.816Z","finished_at":"2021-03-18T12:51:52.000Z","committed_at":null,"duration":43,"queued_duration":1,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":false,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272632767","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"emitted_at":1671097096717} -{"stream":"pipelines_extended","data":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271","before_sha":"0000000000000000000000000000000000000000","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:48:50.166Z","finished_at":"2021-03-18T12:49:38.084Z","committed_at":null,"duration":47,"queued_duration":null,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":false,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272631271","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"emitted_at":1671097097226} -{"stream":"users","data":{"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin"},"emitted_at":1671097097941} -{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097097942} -{"stream":"users","data":{"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin"},"emitted_at":1671097098354} -{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097098355} -{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097098865} -{"stream":"users","data":{"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin"},"emitted_at":1671097099171} -{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097099171} -{"stream":"users","data":{"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin"},"emitted_at":1671097099469} -{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097099469} -{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097099787} -{"stream":"epics","data":{"id":678569,"iid":1,"color":"#1068bf","text_color":"#FFFFFF","group_id":11266951,"parent_id":null,"parent_iid":null,"title":"Source Gitlab: certify to Beta","description":"Lorem ipsum","confidential":false,"start_date":"2022-12-11","start_date_is_fixed":true,"start_date_fixed":"2022-12-11","start_date_from_inherited_source":null,"start_date_from_milestones":null,"end_date":"2022-12-30","due_date":"2022-12-30","due_date_is_fixed":true,"due_date_fixed":"2022-12-30","due_date_from_inherited_source":null,"due_date_from_milestones":null,"state":"opened","web_edit_url":"/groups/airbyte.io/-/epics/1","web_url":"https://gitlab.com/groups/airbyte.io/-/epics/1","references":{"short":"&1","relative":"&1","full":"airbyte.io&1"},"created_at":"2022-12-11T10:50:04.280Z","updated_at":"2022-12-11T10:50:26.276Z","closed_at":null,"labels":[],"upvotes":1,"downvotes":0,"_links":{"self":"https://gitlab.com/api/v4/groups/11266951/epics/1","epic_issues":"https://gitlab.com/api/v4/groups/11266951/epics/1/issues","group":"https://gitlab.com/api/v4/groups/11266951","parent":null},"author_id":8375961},"emitted_at":1671097103885} -{"stream":"epic_issues","data":{"id":120214448,"iid":31,"project_id":25156633,"title":"Unit tests","description":null,"state":"opened","created_at":"2022-12-11T10:50:25.940Z","updated_at":"2022-12-11T10:50:25.940Z","closed_at":null,"closed_by":null,"labels":[],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/airbyte.io/ci-test-project/-/issues/31","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"weight":null,"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25156633/issues/31","notes":"https://gitlab.com/api/v4/projects/25156633/issues/31/notes","award_emoji":"https://gitlab.com/api/v4/projects/25156633/issues/31/award_emoji","project":"https://gitlab.com/api/v4/projects/25156633","closed_as_duplicate_of":null},"references":{"short":"#31","relative":"#31","full":"airbyte.io/ci-test-project#31"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"epic_iid":1,"epic":{"id":678569,"iid":1,"title":"Source Gitlab: certify to Beta","url":"/groups/airbyte.io/-/epics/1","group_id":11266951,"human_readable_end_date":"Dec 30, 2022","human_readable_timestamp":"15 days remaining"},"iteration":null,"epic_issue_id":1899479,"relative_position":0,"milestone_id":null,"assignee_id":null,"author_id":8375961},"emitted_at":1671097107527} +{"stream": "groups", "data": {"id": 11329647, "web_url": "https://gitlab.com/groups/new-group-airbute", "name": "New Group Airbute", "path": "new-group-airbute", "description": "", "visibility": "public", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute", "full_path": "new-group-airbute", "created_at": "2021-03-15T15:55:53.613Z", "parent_id": null, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941-PhosPap-Sf1UxL1g6m4", "prevent_sharing_groups_outside_hierarchy": false, "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": [{"id": 25157276, "path_with_namespace": "new-group-airbute/new-ci-test-project"}]}, "emitted_at": 1674055483187} +{"stream": "groups", "data": {"id": 61014882, "web_url": "https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg", "name": "Test Private SG", "path": "test-private-sg", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Subgroup Airbyte / Test Private SG", "full_path": "new-group-airbute/test-subgroup-airbyte/test-private-sg", "created_at": "2022-12-02T08:46:22.648Z", "parent_id": 61014863, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941bjUaJQy2zzar-JmNBjfq", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": []}, "emitted_at": 1674055483596} +{"stream": "groups", "data": {"id": 61015181, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1", "name": "Test Private SubSubG 1", "path": "test-private-subsubg-1", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Public SG / Test SG Public 2 / Test Private SubSubG 1", "full_path": "new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1", "created_at": "2022-12-02T08:54:42.252Z", "parent_id": 61014943, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941x8xQf6K-UvnnyJ-bcut4", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": [{"id": 41551658, "path_with_namespace": "new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup"}]}, "emitted_at": 1674055484432} +{"stream": "groups", "data": {"id": 61015232, "web_url": "https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2", "name": "Test Private SubSubG 2", "path": "test-private-subsubg-2", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2", "full_path": "new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2", "created_at": "2022-12-02T08:56:21.783Z", "parent_id": 61014882, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941bnTmxzY-5zek69yJ7s4r", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": []}, "emitted_at": 1674055484953} +{"stream": "groups", "data": {"id": 61015239, "web_url": "https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3", "name": "Test Private SubSubG 3", "path": "test-private-subsubg-3", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2 / Test Private SubSubG 3", "full_path": "new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3", "created_at": "2022-12-02T08:56:34.202Z", "parent_id": 61015232, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941fxQ648-7Mt4f2K11VUwm", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": []}, "emitted_at": 1674055485369} +{"stream": "groups", "data": {"id": 61014902, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg", "name": "Test Public SG", "path": "test-public-sg", "description": "", "visibility": "public", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Public SG", "full_path": "new-group-airbute/test-public-sg", "created_at": "2022-12-02T08:47:02.412Z", "parent_id": 11329647, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941iDo59yBXTTUMQUQztr_x", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": [{"id": 41541906, "path_with_namespace": "new-group-airbute/test-public-sg/test-public-project-1"}]}, "emitted_at": 1674055485879} +{"stream": "groups", "data": {"id": 61015202, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1", "name": "Test Public SubSubG 1", "path": "test-public-subsubg-1", "description": "", "visibility": "public", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Public SG / Test SG Public 2 / Test Public SubSubG 1", "full_path": "new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1", "created_at": "2022-12-02T08:55:27.046Z", "parent_id": 61014943, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941K9JsRDnw2J5ZQxgCDr6d", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": []}, "emitted_at": 1674055486232} +{"stream": "groups", "data": {"id": 61014943, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2", "name": "Test SG Public 2", "path": "test-sg-public-2", "description": "", "visibility": "public", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Public SG / Test SG Public 2", "full_path": "new-group-airbute/test-public-sg/test-sg-public-2", "created_at": "2022-12-02T08:48:04.727Z", "parent_id": 61014902, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941eGbxua89EPU8uu4snVuj", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": [{"id": 41541858, "path_with_namespace": "new-group-airbute/test-public-sg/test-sg-public-2/test-project-1"}]}, "emitted_at": 1674055486702} +{"stream": "groups", "data": {"id": 61014863, "web_url": "https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte", "name": "Test Subgroup Airbyte", "path": "test-subgroup-airbyte", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Subgroup Airbyte", "full_path": "new-group-airbute/test-subgroup-airbyte", "created_at": "2022-12-02T08:45:53.479Z", "parent_id": 11329647, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941yL2Jtfwss88thzmUPZv5", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": [{"id": 41541892, "path_with_namespace": "new-group-airbute/test-subgroup-airbyte/test-project-2"}]}, "emitted_at": 1674055487080} +{"stream": "groups", "data": {"id": 11266951, "web_url": "https://gitlab.com/groups/airbyte.io", "name": "airbyte.io", "path": "airbyte.io", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "airbyte.io", "full_path": "airbyte.io", "created_at": "2021-03-10T17:16:37.549Z", "parent_id": null, "ldap_cn": null, "ldap_access": null, "marked_for_deletion_on": null, "shared_with_groups": [], "runners_token": "GR1348941bzmDjXx-Cz48snUcJfK8", "prevent_sharing_groups_outside_hierarchy": false, "shared_projects": [], "shared_runners_minutes_limit": 10000, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": false, "membership_lock": false, "ip_restriction_ranges": null, "projects": [{"id": 25156633, "path_with_namespace": "airbyte.io/ci-test-project"}, {"id": 25032440, "path_with_namespace": "airbyte.io/learn-gitlab"}, {"id": 25032439, "path_with_namespace": "airbyte.io/documentation"}]}, "emitted_at": 1674055487710} +{"stream": "projects", "data": {"id": 25157276, "description": "", "name": "New CI Test Project ", "name_with_namespace": "New Group Airbute / New CI Test Project ", "path": "new-ci-test-project", "path_with_namespace": "new-group-airbute/new-ci-test-project", "created_at": "2021-03-15T15:08:36.498Z", "default_branch": "master", "tag_list": [], "topics": [], "ssh_url_to_repo": "git@gitlab.com:new-group-airbute/new-ci-test-project.git", "http_url_to_repo": "https://gitlab.com/new-group-airbute/new-ci-test-project.git", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project", "readme_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/blob/master/README.md", "forks_count": 0, "avatar_url": null, "star_count": 0, "last_activity_at": "2022-12-13T09:39:47.235Z", "namespace": {"id": 11329647, "name": "New Group Airbute", "path": "new-group-airbute", "kind": "group", "full_path": "new-group-airbute", "parent_id": null, "avatar_url": null, "web_url": "https://gitlab.com/groups/new-group-airbute"}, "container_registry_image_prefix": "registry.gitlab.com/new-group-airbute/new-ci-test-project", "_links": {"self": "https://gitlab.com/api/v4/projects/25157276", "issues": "https://gitlab.com/api/v4/projects/25157276/issues", "merge_requests": "https://gitlab.com/api/v4/projects/25157276/merge_requests", "repo_branches": "https://gitlab.com/api/v4/projects/25157276/repository/branches", "labels": "https://gitlab.com/api/v4/projects/25157276/labels", "events": "https://gitlab.com/api/v4/projects/25157276/events", "members": "https://gitlab.com/api/v4/projects/25157276/members", "cluster_agents": "https://gitlab.com/api/v4/projects/25157276/cluster_agents"}, "packages_enabled": true, "empty_repo": false, "archived": false, "visibility": "private", "resolve_outdated_diff_discussions": false, "container_expiration_policy": {"cadence": "1d", "enabled": false, "keep_n": 10, "older_than": "90d", "name_regex": ".*", "name_regex_keep": null, "next_run_at": "2021-03-16T15:08:36.518Z"}, "issues_enabled": true, "merge_requests_enabled": true, "wiki_enabled": true, "jobs_enabled": true, "snippets_enabled": true, "container_registry_enabled": true, "service_desk_enabled": true, "service_desk_address": "contact-project+new-group-airbute-new-ci-test-project-25157276-issue-@incoming.gitlab.com", "can_create_merge_request_in": true, "issues_access_level": "enabled", "repository_access_level": "enabled", "merge_requests_access_level": "enabled", "forking_access_level": "enabled", "wiki_access_level": "enabled", "builds_access_level": "enabled", "snippets_access_level": "enabled", "pages_access_level": "private", "operations_access_level": "enabled", "analytics_access_level": "enabled", "container_registry_access_level": "enabled", "security_and_compliance_access_level": "private", "releases_access_level": "enabled", "environments_access_level": "enabled", "feature_flags_access_level": "enabled", "infrastructure_access_level": "enabled", "monitor_access_level": "enabled", "emails_disabled": null, "shared_runners_enabled": true, "lfs_enabled": true, "creator_id": 8375961, "import_url": null, "import_type": null, "import_status": "none", "import_error": null, "open_issues_count": 31, "runners_token": "GR1348941eMJgWDU69xyyshaNsaTZ", "ci_default_git_depth": 50, "ci_forward_deployment_enabled": true, "ci_job_token_scope_enabled": false, "ci_separated_caches": true, "ci_opt_in_jwt": false, "ci_allow_fork_pipelines_to_run_in_parent_project": true, "public_jobs": true, "build_git_strategy": "fetch", "build_timeout": 3600, "auto_cancel_pending_pipelines": "enabled", "ci_config_path": "", "shared_with_groups": [], "only_allow_merge_if_pipeline_succeeds": false, "allow_merge_on_skipped_pipeline": null, "restrict_user_defined_variables": false, "request_access_enabled": true, "only_allow_merge_if_all_discussions_are_resolved": false, "remove_source_branch_after_merge": true, "printing_merge_request_link_enabled": true, "merge_method": "merge", "squash_option": "default_off", "enforce_auth_checks_on_uploads": true, "suggestion_commit_message": null, "merge_commit_template": null, "squash_commit_template": null, "issue_branch_template": null, "statistics": {"commit_count": 3, "storage_size": 291925, "repository_size": 283115, "wiki_size": 0, "lfs_objects_size": 0, "job_artifacts_size": 8810, "pipeline_artifacts_size": 0, "packages_size": 0, "snippets_size": 0, "uploads_size": 0}, "auto_devops_enabled": false, "auto_devops_deploy_strategy": "continuous", "autoclose_referenced_issues": true, "keep_latest_artifact": true, "runner_token_expiration_interval": null, "external_authorization_classification_label": "", "requirements_enabled": false, "requirements_access_level": "enabled", "security_and_compliance_enabled": true, "compliance_frameworks": [], "permissions": {"project_access": {"access_level": 40, "notification_level": 3}, "group_access": {"access_level": 50, "notification_level": 3}}}, "emitted_at": 1674055488348} +{"stream": "projects", "data": {"id": 25032439, "description": null, "name": "documentation", "name_with_namespace": "airbyte.io / documentation", "path": "documentation", "path_with_namespace": "airbyte.io/documentation", "created_at": "2021-03-10T17:16:53.200Z", "default_branch": "main", "tag_list": [], "topics": [], "ssh_url_to_repo": "git@gitlab.com:airbyte.io/documentation.git", "http_url_to_repo": "https://gitlab.com/airbyte.io/documentation.git", "web_url": "https://gitlab.com/airbyte.io/documentation", "readme_url": null, "forks_count": 0, "avatar_url": null, "star_count": 0, "last_activity_at": "2021-03-10T17:16:53.200Z", "namespace": {"id": 11266951, "name": "airbyte.io", "path": "airbyte.io", "kind": "group", "full_path": "airbyte.io", "parent_id": null, "avatar_url": null, "web_url": "https://gitlab.com/groups/airbyte.io"}, "container_registry_image_prefix": "registry.gitlab.com/airbyte.io/documentation", "_links": {"self": "https://gitlab.com/api/v4/projects/25032439", "issues": "https://gitlab.com/api/v4/projects/25032439/issues", "merge_requests": "https://gitlab.com/api/v4/projects/25032439/merge_requests", "repo_branches": "https://gitlab.com/api/v4/projects/25032439/repository/branches", "labels": "https://gitlab.com/api/v4/projects/25032439/labels", "events": "https://gitlab.com/api/v4/projects/25032439/events", "members": "https://gitlab.com/api/v4/projects/25032439/members", "cluster_agents": "https://gitlab.com/api/v4/projects/25032439/cluster_agents"}, "packages_enabled": true, "empty_repo": true, "archived": false, "visibility": "private", "resolve_outdated_diff_discussions": false, "container_expiration_policy": {"cadence": "1d", "enabled": false, "keep_n": 10, "older_than": "90d", "name_regex": ".*", "name_regex_keep": null, "next_run_at": "2021-03-11T17:16:53.215Z"}, "issues_enabled": true, "merge_requests_enabled": true, "wiki_enabled": true, "jobs_enabled": true, "snippets_enabled": true, "container_registry_enabled": true, "service_desk_enabled": true, "service_desk_address": "contact-project+airbyte-io-documentation-25032439-issue-@incoming.gitlab.com", "can_create_merge_request_in": true, "issues_access_level": "enabled", "repository_access_level": "enabled", "merge_requests_access_level": "enabled", "forking_access_level": "enabled", "wiki_access_level": "enabled", "builds_access_level": "enabled", "snippets_access_level": "enabled", "pages_access_level": "private", "operations_access_level": "enabled", "analytics_access_level": "enabled", "container_registry_access_level": "enabled", "security_and_compliance_access_level": "private", "releases_access_level": "enabled", "environments_access_level": "enabled", "feature_flags_access_level": "enabled", "infrastructure_access_level": "enabled", "monitor_access_level": "enabled", "emails_disabled": null, "shared_runners_enabled": true, "lfs_enabled": true, "creator_id": 8375961, "import_url": null, "import_type": null, "import_status": "none", "import_error": null, "open_issues_count": 0, "runners_token": "GR1348941iwELAs9x3hqVbY3Bo_q4", "ci_default_git_depth": 50, "ci_forward_deployment_enabled": true, "ci_job_token_scope_enabled": false, "ci_separated_caches": true, "ci_opt_in_jwt": false, "ci_allow_fork_pipelines_to_run_in_parent_project": true, "public_jobs": true, "build_git_strategy": "fetch", "build_timeout": 3600, "auto_cancel_pending_pipelines": "enabled", "ci_config_path": "", "shared_with_groups": [], "only_allow_merge_if_pipeline_succeeds": false, "allow_merge_on_skipped_pipeline": null, "restrict_user_defined_variables": false, "request_access_enabled": true, "only_allow_merge_if_all_discussions_are_resolved": false, "remove_source_branch_after_merge": true, "printing_merge_request_link_enabled": true, "merge_method": "merge", "squash_option": "default_off", "enforce_auth_checks_on_uploads": true, "suggestion_commit_message": null, "merge_commit_template": null, "squash_commit_template": null, "issue_branch_template": null, "statistics": {"commit_count": 0, "storage_size": 0, "repository_size": 0, "wiki_size": 0, "lfs_objects_size": 0, "job_artifacts_size": 0, "pipeline_artifacts_size": 0, "packages_size": 0, "snippets_size": 0, "uploads_size": 0}, "auto_devops_enabled": false, "auto_devops_deploy_strategy": "continuous", "autoclose_referenced_issues": true, "keep_latest_artifact": true, "runner_token_expiration_interval": null, "approvals_before_merge": 0, "mirror": false, "external_authorization_classification_label": "", "marked_for_deletion_at": null, "marked_for_deletion_on": null, "requirements_enabled": false, "requirements_access_level": "enabled", "security_and_compliance_enabled": true, "compliance_frameworks": [], "issues_template": null, "merge_requests_template": null, "merge_pipelines_enabled": false, "merge_trains_enabled": false, "permissions": {"project_access": null, "group_access": {"access_level": 50, "notification_level": 3}}}, "emitted_at": 1674055488891} +{"stream": "projects", "data": {"id": 41541858, "description": "Project description", "name": "Test Project 1", "name_with_namespace": "New Group Airbute / Test Public SG / Test SG Public 2 / Test Project 1", "path": "test-project-1", "path_with_namespace": "new-group-airbute/test-public-sg/test-sg-public-2/test-project-1", "created_at": "2022-12-02T08:50:08.842Z", "default_branch": "master", "tag_list": [], "topics": [], "ssh_url_to_repo": "git@gitlab.com:new-group-airbute/test-public-sg/test-sg-public-2/test-project-1.git", "http_url_to_repo": "https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1.git", "web_url": "https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1", "readme_url": "https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1/-/blob/master/README.md", "forks_count": 0, "avatar_url": null, "star_count": 0, "last_activity_at": "2022-12-02T08:50:08.842Z", "namespace": {"id": 61014943, "name": "Test SG Public 2", "path": "test-sg-public-2", "kind": "group", "full_path": "new-group-airbute/test-public-sg/test-sg-public-2", "parent_id": 61014902, "avatar_url": null, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2"}, "container_registry_image_prefix": "registry.gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-project-1", "_links": {"self": "https://gitlab.com/api/v4/projects/41541858", "issues": "https://gitlab.com/api/v4/projects/41541858/issues", "merge_requests": "https://gitlab.com/api/v4/projects/41541858/merge_requests", "repo_branches": "https://gitlab.com/api/v4/projects/41541858/repository/branches", "labels": "https://gitlab.com/api/v4/projects/41541858/labels", "events": "https://gitlab.com/api/v4/projects/41541858/events", "members": "https://gitlab.com/api/v4/projects/41541858/members", "cluster_agents": "https://gitlab.com/api/v4/projects/41541858/cluster_agents"}, "packages_enabled": true, "empty_repo": false, "archived": false, "visibility": "private", "resolve_outdated_diff_discussions": false, "container_expiration_policy": {"cadence": "1d", "enabled": false, "keep_n": 10, "older_than": "90d", "name_regex": ".*", "name_regex_keep": null, "next_run_at": "2022-12-03T08:50:08.883Z"}, "issues_enabled": true, "merge_requests_enabled": true, "wiki_enabled": true, "jobs_enabled": true, "snippets_enabled": true, "container_registry_enabled": true, "service_desk_enabled": true, "service_desk_address": "contact-project+new-group-airbute-test-public-sg-test-sg-public-2-test-project-41541858-issue-@incoming.gitlab.com", "can_create_merge_request_in": true, "issues_access_level": "enabled", "repository_access_level": "enabled", "merge_requests_access_level": "enabled", "forking_access_level": "enabled", "wiki_access_level": "enabled", "builds_access_level": "enabled", "snippets_access_level": "enabled", "pages_access_level": "private", "operations_access_level": "enabled", "analytics_access_level": "enabled", "container_registry_access_level": "enabled", "security_and_compliance_access_level": "private", "releases_access_level": "enabled", "environments_access_level": "enabled", "feature_flags_access_level": "enabled", "infrastructure_access_level": "enabled", "monitor_access_level": "enabled", "emails_disabled": null, "shared_runners_enabled": true, "lfs_enabled": true, "creator_id": 8375961, "import_url": null, "import_type": "gitlab_project", "import_status": "finished", "import_error": null, "open_issues_count": 0, "runners_token": "GR1348941JLqwDRN64-__uzBXcgc5", "ci_default_git_depth": 20, "ci_forward_deployment_enabled": true, "ci_job_token_scope_enabled": false, "ci_separated_caches": true, "ci_opt_in_jwt": false, "ci_allow_fork_pipelines_to_run_in_parent_project": true, "public_jobs": true, "build_git_strategy": "fetch", "build_timeout": 3600, "auto_cancel_pending_pipelines": "enabled", "ci_config_path": "", "shared_with_groups": [], "only_allow_merge_if_pipeline_succeeds": false, "allow_merge_on_skipped_pipeline": null, "restrict_user_defined_variables": false, "request_access_enabled": false, "only_allow_merge_if_all_discussions_are_resolved": false, "remove_source_branch_after_merge": true, "printing_merge_request_link_enabled": true, "merge_method": "merge", "squash_option": "default_off", "enforce_auth_checks_on_uploads": true, "suggestion_commit_message": null, "merge_commit_template": null, "squash_commit_template": null, "issue_branch_template": null, "statistics": {"commit_count": 1, "storage_size": 125829, "repository_size": 125829, "wiki_size": 0, "lfs_objects_size": 0, "job_artifacts_size": 0, "pipeline_artifacts_size": 0, "packages_size": 0, "snippets_size": 0, "uploads_size": 0}, "auto_devops_enabled": false, "auto_devops_deploy_strategy": "continuous", "autoclose_referenced_issues": true, "keep_latest_artifact": true, "runner_token_expiration_interval": null, "external_authorization_classification_label": "", "requirements_enabled": false, "requirements_access_level": "enabled", "security_and_compliance_enabled": true, "compliance_frameworks": [], "permissions": {"project_access": {"access_level": 40, "notification_level": 3}, "group_access": {"access_level": 50, "notification_level": 3}}}, "emitted_at": 1674055489505} +{"stream": "projects", "data": {"id": 41541892, "description": "Project description", "name": "Test Project 2", "name_with_namespace": "New Group Airbute / Test Subgroup Airbyte / Test Project 2", "path": "test-project-2", "path_with_namespace": "new-group-airbute/test-subgroup-airbyte/test-project-2", "created_at": "2022-12-02T08:51:27.429Z", "default_branch": "master", "tag_list": [], "topics": [], "ssh_url_to_repo": "git@gitlab.com:new-group-airbute/test-subgroup-airbyte/test-project-2.git", "http_url_to_repo": "https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2.git", "web_url": "https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2", "readme_url": "https://gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2/-/blob/master/README.md", "forks_count": 0, "avatar_url": null, "star_count": 0, "last_activity_at": "2022-12-02T08:51:27.429Z", "namespace": {"id": 61014863, "name": "Test Subgroup Airbyte", "path": "test-subgroup-airbyte", "kind": "group", "full_path": "new-group-airbute/test-subgroup-airbyte", "parent_id": 11329647, "avatar_url": null, "web_url": "https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte"}, "container_registry_image_prefix": "registry.gitlab.com/new-group-airbute/test-subgroup-airbyte/test-project-2", "_links": {"self": "https://gitlab.com/api/v4/projects/41541892", "issues": "https://gitlab.com/api/v4/projects/41541892/issues", "merge_requests": "https://gitlab.com/api/v4/projects/41541892/merge_requests", "repo_branches": "https://gitlab.com/api/v4/projects/41541892/repository/branches", "labels": "https://gitlab.com/api/v4/projects/41541892/labels", "events": "https://gitlab.com/api/v4/projects/41541892/events", "members": "https://gitlab.com/api/v4/projects/41541892/members", "cluster_agents": "https://gitlab.com/api/v4/projects/41541892/cluster_agents"}, "packages_enabled": true, "empty_repo": false, "archived": false, "visibility": "private", "resolve_outdated_diff_discussions": false, "container_expiration_policy": {"cadence": "1d", "enabled": false, "keep_n": 10, "older_than": "90d", "name_regex": ".*", "name_regex_keep": null, "next_run_at": "2022-12-03T08:51:27.465Z"}, "issues_enabled": true, "merge_requests_enabled": true, "wiki_enabled": true, "jobs_enabled": true, "snippets_enabled": true, "container_registry_enabled": true, "service_desk_enabled": true, "service_desk_address": "contact-project+new-group-airbute-test-subgroup-airbyte-test-project-2-41541892-issue-@incoming.gitlab.com", "can_create_merge_request_in": true, "issues_access_level": "enabled", "repository_access_level": "enabled", "merge_requests_access_level": "enabled", "forking_access_level": "enabled", "wiki_access_level": "enabled", "builds_access_level": "enabled", "snippets_access_level": "enabled", "pages_access_level": "enabled", "operations_access_level": "enabled", "analytics_access_level": "enabled", "container_registry_access_level": "enabled", "security_and_compliance_access_level": "private", "releases_access_level": "enabled", "environments_access_level": "enabled", "feature_flags_access_level": "enabled", "infrastructure_access_level": "enabled", "monitor_access_level": "enabled", "emails_disabled": null, "shared_runners_enabled": true, "lfs_enabled": true, "creator_id": 8375961, "import_url": null, "import_type": "gitlab_project", "import_status": "finished", "import_error": null, "open_issues_count": 0, "runners_token": "GR1348941jzk79ABKrb8iMGhN9aoy", "ci_default_git_depth": 20, "ci_forward_deployment_enabled": true, "ci_job_token_scope_enabled": false, "ci_separated_caches": true, "ci_opt_in_jwt": false, "ci_allow_fork_pipelines_to_run_in_parent_project": true, "public_jobs": true, "build_git_strategy": "fetch", "build_timeout": 3600, "auto_cancel_pending_pipelines": "enabled", "ci_config_path": "", "shared_with_groups": [], "only_allow_merge_if_pipeline_succeeds": false, "allow_merge_on_skipped_pipeline": null, "restrict_user_defined_variables": false, "request_access_enabled": false, "only_allow_merge_if_all_discussions_are_resolved": false, "remove_source_branch_after_merge": true, "printing_merge_request_link_enabled": true, "merge_method": "merge", "squash_option": "default_off", "enforce_auth_checks_on_uploads": true, "suggestion_commit_message": null, "merge_commit_template": null, "squash_commit_template": null, "issue_branch_template": null, "statistics": {"commit_count": 1, "storage_size": 2495610, "repository_size": 2495610, "wiki_size": 0, "lfs_objects_size": 0, "job_artifacts_size": 0, "pipeline_artifacts_size": 0, "packages_size": 0, "snippets_size": 0, "uploads_size": 0}, "auto_devops_enabled": false, "auto_devops_deploy_strategy": "continuous", "autoclose_referenced_issues": true, "keep_latest_artifact": true, "runner_token_expiration_interval": null, "external_authorization_classification_label": "", "requirements_enabled": false, "requirements_access_level": "enabled", "security_and_compliance_enabled": true, "compliance_frameworks": [], "permissions": {"project_access": {"access_level": 40, "notification_level": 3}, "group_access": {"access_level": 50, "notification_level": 3}}}, "emitted_at": 1674055489927} +{"stream": "projects", "data": {"id": 25032440, "description": "Learn how to use GitLab to support your software development life cycle.", "name": "Learn GitLab", "name_with_namespace": "airbyte.io / Learn GitLab", "path": "learn-gitlab", "path_with_namespace": "airbyte.io/learn-gitlab", "created_at": "2021-03-10T17:16:53.553Z", "default_branch": "master", "tag_list": [], "topics": [], "ssh_url_to_repo": "git@gitlab.com:airbyte.io/learn-gitlab.git", "http_url_to_repo": "https://gitlab.com/airbyte.io/learn-gitlab.git", "web_url": "https://gitlab.com/airbyte.io/learn-gitlab", "readme_url": "https://gitlab.com/airbyte.io/learn-gitlab/-/blob/master/README.md", "forks_count": 0, "avatar_url": "https://gitlab.com/uploads/-/system/project/avatar/25032440/Artboard.jpg", "star_count": 0, "last_activity_at": "2021-03-10T17:16:53.553Z", "namespace": {"id": 11266951, "name": "airbyte.io", "path": "airbyte.io", "kind": "group", "full_path": "airbyte.io", "parent_id": null, "avatar_url": null, "web_url": "https://gitlab.com/groups/airbyte.io"}, "container_registry_image_prefix": "registry.gitlab.com/airbyte.io/learn-gitlab", "_links": {"self": "https://gitlab.com/api/v4/projects/25032440", "issues": "https://gitlab.com/api/v4/projects/25032440/issues", "merge_requests": "https://gitlab.com/api/v4/projects/25032440/merge_requests", "repo_branches": "https://gitlab.com/api/v4/projects/25032440/repository/branches", "labels": "https://gitlab.com/api/v4/projects/25032440/labels", "events": "https://gitlab.com/api/v4/projects/25032440/events", "members": "https://gitlab.com/api/v4/projects/25032440/members", "cluster_agents": "https://gitlab.com/api/v4/projects/25032440/cluster_agents"}, "packages_enabled": true, "empty_repo": false, "archived": false, "visibility": "private", "resolve_outdated_diff_discussions": false, "container_expiration_policy": {"cadence": "1d", "enabled": false, "keep_n": 10, "older_than": "90d", "name_regex": ".*", "name_regex_keep": null, "next_run_at": "2021-03-11T17:16:53.565Z"}, "issues_enabled": true, "merge_requests_enabled": true, "wiki_enabled": true, "jobs_enabled": true, "snippets_enabled": true, "container_registry_enabled": true, "service_desk_enabled": true, "service_desk_address": "contact-project+airbyte-io-learn-gitlab-25032440-issue-@incoming.gitlab.com", "can_create_merge_request_in": true, "issues_access_level": "enabled", "repository_access_level": "enabled", "merge_requests_access_level": "enabled", "forking_access_level": "enabled", "wiki_access_level": "enabled", "builds_access_level": "enabled", "snippets_access_level": "enabled", "pages_access_level": "private", "operations_access_level": "enabled", "analytics_access_level": "enabled", "container_registry_access_level": "enabled", "security_and_compliance_access_level": "private", "releases_access_level": "enabled", "environments_access_level": "enabled", "feature_flags_access_level": "enabled", "infrastructure_access_level": "enabled", "monitor_access_level": "enabled", "emails_disabled": null, "shared_runners_enabled": true, "lfs_enabled": true, "creator_id": 8375961, "import_url": null, "import_type": "gitlab_project", "import_status": "finished", "import_error": null, "open_issues_count": 12, "runners_token": "GR1348941zm9PmsyMxiKjiwpGxKtf", "ci_default_git_depth": 50, "ci_forward_deployment_enabled": true, "ci_job_token_scope_enabled": false, "ci_separated_caches": true, "ci_opt_in_jwt": false, "ci_allow_fork_pipelines_to_run_in_parent_project": true, "public_jobs": true, "build_git_strategy": "fetch", "build_timeout": 3600, "auto_cancel_pending_pipelines": "enabled", "ci_config_path": "", "shared_with_groups": [], "only_allow_merge_if_pipeline_succeeds": false, "allow_merge_on_skipped_pipeline": null, "restrict_user_defined_variables": false, "request_access_enabled": true, "only_allow_merge_if_all_discussions_are_resolved": false, "remove_source_branch_after_merge": true, "printing_merge_request_link_enabled": true, "merge_method": "merge", "squash_option": "default_off", "enforce_auth_checks_on_uploads": true, "suggestion_commit_message": null, "merge_commit_template": null, "squash_commit_template": null, "issue_branch_template": null, "statistics": {"commit_count": 1, "storage_size": 251658, "repository_size": 251658, "wiki_size": 0, "lfs_objects_size": 0, "job_artifacts_size": 0, "pipeline_artifacts_size": 0, "packages_size": 0, "snippets_size": 0, "uploads_size": 3088}, "auto_devops_enabled": false, "auto_devops_deploy_strategy": "continuous", "autoclose_referenced_issues": true, "keep_latest_artifact": true, "runner_token_expiration_interval": null, "approvals_before_merge": 0, "mirror": false, "external_authorization_classification_label": "", "marked_for_deletion_at": null, "marked_for_deletion_on": null, "requirements_enabled": false, "requirements_access_level": "enabled", "security_and_compliance_enabled": true, "compliance_frameworks": [], "issues_template": null, "merge_requests_template": null, "merge_pipelines_enabled": false, "merge_trains_enabled": false, "permissions": {"project_access": {"access_level": 40, "notification_level": 3}, "group_access": {"access_level": 50, "notification_level": 3}}}, "emitted_at": 1674055490581} +{"stream": "projects", "data": {"id": 41541906, "description": "Project description", "name": "Test Public Project 1", "name_with_namespace": "New Group Airbute / Test Public SG / Test Public Project 1", "path": "test-public-project-1", "path_with_namespace": "new-group-airbute/test-public-sg/test-public-project-1", "created_at": "2022-12-02T08:52:11.319Z", "default_branch": "master", "tag_list": [], "topics": [], "ssh_url_to_repo": "git@gitlab.com:new-group-airbute/test-public-sg/test-public-project-1.git", "http_url_to_repo": "https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1.git", "web_url": "https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1", "readme_url": "https://gitlab.com/new-group-airbute/test-public-sg/test-public-project-1/-/blob/master/README.md", "forks_count": 0, "avatar_url": null, "star_count": 0, "last_activity_at": "2022-12-02T08:52:11.319Z", "namespace": {"id": 61014902, "name": "Test Public SG", "path": "test-public-sg", "kind": "group", "full_path": "new-group-airbute/test-public-sg", "parent_id": 11329647, "avatar_url": null, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg"}, "container_registry_image_prefix": "registry.gitlab.com/new-group-airbute/test-public-sg/test-public-project-1", "_links": {"self": "https://gitlab.com/api/v4/projects/41541906", "issues": "https://gitlab.com/api/v4/projects/41541906/issues", "merge_requests": "https://gitlab.com/api/v4/projects/41541906/merge_requests", "repo_branches": "https://gitlab.com/api/v4/projects/41541906/repository/branches", "labels": "https://gitlab.com/api/v4/projects/41541906/labels", "events": "https://gitlab.com/api/v4/projects/41541906/events", "members": "https://gitlab.com/api/v4/projects/41541906/members", "cluster_agents": "https://gitlab.com/api/v4/projects/41541906/cluster_agents"}, "packages_enabled": true, "empty_repo": false, "archived": false, "visibility": "public", "resolve_outdated_diff_discussions": false, "container_expiration_policy": {"cadence": "1d", "enabled": false, "keep_n": 10, "older_than": "90d", "name_regex": ".*", "name_regex_keep": null, "next_run_at": "2022-12-03T08:52:11.354Z"}, "issues_enabled": true, "merge_requests_enabled": true, "wiki_enabled": true, "jobs_enabled": true, "snippets_enabled": true, "container_registry_enabled": true, "service_desk_enabled": false, "service_desk_address": "contact-project+new-group-airbute-test-public-sg-test-public-project-1-41541906-issue-@incoming.gitlab.com", "can_create_merge_request_in": true, "issues_access_level": "enabled", "repository_access_level": "enabled", "merge_requests_access_level": "enabled", "forking_access_level": "enabled", "wiki_access_level": "enabled", "builds_access_level": "enabled", "snippets_access_level": "enabled", "pages_access_level": "private", "operations_access_level": "enabled", "analytics_access_level": "enabled", "container_registry_access_level": "enabled", "security_and_compliance_access_level": "private", "releases_access_level": "enabled", "environments_access_level": "enabled", "feature_flags_access_level": "enabled", "infrastructure_access_level": "enabled", "monitor_access_level": "enabled", "emails_disabled": null, "shared_runners_enabled": true, "lfs_enabled": true, "creator_id": 8375961, "import_url": null, "import_type": "gitlab_project", "import_status": "finished", "import_error": null, "open_issues_count": 0, "runners_token": "GR1348941Ni12De_sRyL6anY2uhzP", "ci_default_git_depth": 20, "ci_forward_deployment_enabled": true, "ci_job_token_scope_enabled": false, "ci_separated_caches": true, "ci_opt_in_jwt": false, "ci_allow_fork_pipelines_to_run_in_parent_project": true, "public_jobs": true, "build_git_strategy": "fetch", "build_timeout": 3600, "auto_cancel_pending_pipelines": "enabled", "ci_config_path": "", "shared_with_groups": [], "only_allow_merge_if_pipeline_succeeds": false, "allow_merge_on_skipped_pipeline": null, "restrict_user_defined_variables": false, "request_access_enabled": true, "only_allow_merge_if_all_discussions_are_resolved": false, "remove_source_branch_after_merge": true, "printing_merge_request_link_enabled": true, "merge_method": "merge", "squash_option": "default_off", "enforce_auth_checks_on_uploads": true, "suggestion_commit_message": null, "merge_commit_template": null, "squash_commit_template": null, "issue_branch_template": null, "statistics": {"commit_count": 1, "storage_size": 209715, "repository_size": 209715, "wiki_size": 0, "lfs_objects_size": 0, "job_artifacts_size": 0, "pipeline_artifacts_size": 0, "packages_size": 0, "snippets_size": 0, "uploads_size": 0}, "auto_devops_enabled": false, "auto_devops_deploy_strategy": "continuous", "autoclose_referenced_issues": true, "keep_latest_artifact": true, "runner_token_expiration_interval": null, "external_authorization_classification_label": "", "requirements_enabled": false, "requirements_access_level": "enabled", "security_and_compliance_enabled": true, "compliance_frameworks": [], "permissions": {"project_access": {"access_level": 40, "notification_level": 3}, "group_access": {"access_level": 50, "notification_level": 3}}}, "emitted_at": 1674055491594} +{"stream": "projects", "data": {"id": 25156633, "description": "", "name": "CI Test Project", "name_with_namespace": "airbyte.io / CI Test Project", "path": "ci-test-project", "path_with_namespace": "airbyte.io/ci-test-project", "created_at": "2021-03-15T14:46:27.213Z", "default_branch": "master", "tag_list": [], "topics": [], "ssh_url_to_repo": "git@gitlab.com:airbyte.io/ci-test-project.git", "http_url_to_repo": "https://gitlab.com/airbyte.io/ci-test-project.git", "web_url": "https://gitlab.com/airbyte.io/ci-test-project", "readme_url": "https://gitlab.com/airbyte.io/ci-test-project/-/blob/master/README.md", "forks_count": 0, "avatar_url": null, "star_count": 0, "last_activity_at": "2022-12-11T10:50:26.066Z", "namespace": {"id": 11266951, "name": "airbyte.io", "path": "airbyte.io", "kind": "group", "full_path": "airbyte.io", "parent_id": null, "avatar_url": null, "web_url": "https://gitlab.com/groups/airbyte.io"}, "container_registry_image_prefix": "registry.gitlab.com/airbyte.io/ci-test-project", "_links": {"self": "https://gitlab.com/api/v4/projects/25156633", "issues": "https://gitlab.com/api/v4/projects/25156633/issues", "merge_requests": "https://gitlab.com/api/v4/projects/25156633/merge_requests", "repo_branches": "https://gitlab.com/api/v4/projects/25156633/repository/branches", "labels": "https://gitlab.com/api/v4/projects/25156633/labels", "events": "https://gitlab.com/api/v4/projects/25156633/events", "members": "https://gitlab.com/api/v4/projects/25156633/members", "cluster_agents": "https://gitlab.com/api/v4/projects/25156633/cluster_agents"}, "packages_enabled": true, "empty_repo": false, "archived": false, "visibility": "private", "resolve_outdated_diff_discussions": false, "container_expiration_policy": {"cadence": "1d", "enabled": false, "keep_n": 10, "older_than": "90d", "name_regex": ".*", "name_regex_keep": null, "next_run_at": "2021-03-16T14:48:00.805Z"}, "issues_enabled": true, "merge_requests_enabled": true, "wiki_enabled": false, "jobs_enabled": true, "snippets_enabled": false, "container_registry_enabled": true, "service_desk_enabled": false, "service_desk_address": "contact-project+airbyte-io-ci-test-project-25156633-issue-@incoming.gitlab.com", "can_create_merge_request_in": true, "issues_access_level": "enabled", "repository_access_level": "enabled", "merge_requests_access_level": "enabled", "forking_access_level": "enabled", "wiki_access_level": "disabled", "builds_access_level": "private", "snippets_access_level": "disabled", "pages_access_level": "enabled", "operations_access_level": "disabled", "analytics_access_level": "disabled", "container_registry_access_level": "enabled", "security_and_compliance_access_level": "private", "releases_access_level": "enabled", "environments_access_level": "disabled", "feature_flags_access_level": "disabled", "infrastructure_access_level": "disabled", "monitor_access_level": "disabled", "emails_disabled": false, "shared_runners_enabled": true, "lfs_enabled": true, "creator_id": 8375961, "import_url": null, "import_type": "gitlab_project", "import_status": "finished", "import_error": null, "open_issues_count": 29, "runners_token": "GR1348941WLwrsxTacV58yxzWsvB2", "ci_default_git_depth": 50, "ci_forward_deployment_enabled": true, "ci_job_token_scope_enabled": false, "ci_separated_caches": true, "ci_opt_in_jwt": false, "ci_allow_fork_pipelines_to_run_in_parent_project": true, "public_jobs": true, "build_git_strategy": "fetch", "build_timeout": 3600, "auto_cancel_pending_pipelines": "enabled", "ci_config_path": null, "shared_with_groups": [], "only_allow_merge_if_pipeline_succeeds": false, "allow_merge_on_skipped_pipeline": null, "restrict_user_defined_variables": false, "request_access_enabled": true, "only_allow_merge_if_all_discussions_are_resolved": false, "remove_source_branch_after_merge": true, "printing_merge_request_link_enabled": true, "merge_method": "merge", "squash_option": "default_off", "enforce_auth_checks_on_uploads": true, "suggestion_commit_message": null, "merge_commit_template": null, "squash_commit_template": null, "issue_branch_template": null, "statistics": {"commit_count": 2, "storage_size": 618659, "repository_size": 618659, "wiki_size": 0, "lfs_objects_size": 0, "job_artifacts_size": 0, "pipeline_artifacts_size": 0, "packages_size": 0, "snippets_size": 0, "uploads_size": 0}, "auto_devops_enabled": false, "auto_devops_deploy_strategy": "continuous", "autoclose_referenced_issues": true, "keep_latest_artifact": true, "runner_token_expiration_interval": null, "approvals_before_merge": 0, "mirror": false, "external_authorization_classification_label": "", "marked_for_deletion_at": null, "marked_for_deletion_on": null, "requirements_enabled": false, "requirements_access_level": "enabled", "security_and_compliance_enabled": true, "compliance_frameworks": [], "issues_template": null, "merge_requests_template": null, "merge_pipelines_enabled": false, "merge_trains_enabled": false, "permissions": {"project_access": {"access_level": 40, "notification_level": 3}, "group_access": {"access_level": 50, "notification_level": 3}}}, "emitted_at": 1674055492225} +{"stream": "projects", "data": {"id": 41551658, "description": null, "name": "Test_project_in_nested_subgroup", "name_with_namespace": "New Group Airbute / Test Public SG / Test SG Public 2 / Test Private SubSubG 1 / Test_project_in_nested_subgroup", "path": "test_project_in_nested_subgroup", "path_with_namespace": "new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup", "created_at": "2022-12-02T14:26:55.282Z", "default_branch": "main", "tag_list": [], "topics": [], "ssh_url_to_repo": "git@gitlab.com:new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup.git", "http_url_to_repo": "https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup.git", "web_url": "https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup", "readme_url": "https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup/-/blob/main/README.md", "forks_count": 0, "avatar_url": null, "star_count": 0, "last_activity_at": "2022-12-02T14:26:55.282Z", "namespace": {"id": 61015181, "name": "Test Private SubSubG 1", "path": "test-private-subsubg-1", "kind": "group", "full_path": "new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1", "parent_id": 61014943, "avatar_url": null, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1"}, "container_registry_image_prefix": "registry.gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup", "_links": {"self": "https://gitlab.com/api/v4/projects/41551658", "issues": "https://gitlab.com/api/v4/projects/41551658/issues", "merge_requests": "https://gitlab.com/api/v4/projects/41551658/merge_requests", "repo_branches": "https://gitlab.com/api/v4/projects/41551658/repository/branches", "labels": "https://gitlab.com/api/v4/projects/41551658/labels", "events": "https://gitlab.com/api/v4/projects/41551658/events", "members": "https://gitlab.com/api/v4/projects/41551658/members", "cluster_agents": "https://gitlab.com/api/v4/projects/41551658/cluster_agents"}, "packages_enabled": true, "empty_repo": false, "archived": false, "visibility": "private", "resolve_outdated_diff_discussions": false, "container_expiration_policy": {"cadence": "1d", "enabled": false, "keep_n": 10, "older_than": "90d", "name_regex": ".*", "name_regex_keep": null, "next_run_at": "2022-12-03T14:26:55.314Z"}, "issues_enabled": true, "merge_requests_enabled": true, "wiki_enabled": true, "jobs_enabled": true, "snippets_enabled": true, "container_registry_enabled": true, "service_desk_enabled": true, "service_desk_address": "contact-project+new-group-airbute-test-public-sg-test-sg-public-2-test-private-41551658-issue-@incoming.gitlab.com", "can_create_merge_request_in": true, "issues_access_level": "enabled", "repository_access_level": "enabled", "merge_requests_access_level": "enabled", "forking_access_level": "enabled", "wiki_access_level": "enabled", "builds_access_level": "enabled", "snippets_access_level": "enabled", "pages_access_level": "private", "operations_access_level": "enabled", "analytics_access_level": "enabled", "container_registry_access_level": "enabled", "security_and_compliance_access_level": "private", "releases_access_level": "enabled", "environments_access_level": "enabled", "feature_flags_access_level": "enabled", "infrastructure_access_level": "enabled", "monitor_access_level": "enabled", "emails_disabled": null, "shared_runners_enabled": true, "lfs_enabled": true, "creator_id": 8375961, "import_url": null, "import_type": null, "import_status": "none", "import_error": null, "open_issues_count": 0, "runners_token": "GR1348941hyrJGkPgfF9b5KARxqHr", "ci_default_git_depth": 20, "ci_forward_deployment_enabled": true, "ci_job_token_scope_enabled": false, "ci_separated_caches": true, "ci_opt_in_jwt": false, "ci_allow_fork_pipelines_to_run_in_parent_project": true, "public_jobs": true, "build_git_strategy": "fetch", "build_timeout": 3600, "auto_cancel_pending_pipelines": "enabled", "ci_config_path": "", "shared_with_groups": [], "only_allow_merge_if_pipeline_succeeds": false, "allow_merge_on_skipped_pipeline": null, "restrict_user_defined_variables": false, "request_access_enabled": true, "only_allow_merge_if_all_discussions_are_resolved": false, "remove_source_branch_after_merge": true, "printing_merge_request_link_enabled": true, "merge_method": "merge", "squash_option": "default_off", "enforce_auth_checks_on_uploads": true, "suggestion_commit_message": null, "merge_commit_template": null, "squash_commit_template": null, "issue_branch_template": null, "statistics": {"commit_count": 1, "storage_size": 73400, "repository_size": 73400, "wiki_size": 0, "lfs_objects_size": 0, "job_artifacts_size": 0, "pipeline_artifacts_size": 0, "packages_size": 0, "snippets_size": 0, "uploads_size": 0}, "auto_devops_enabled": false, "auto_devops_deploy_strategy": "continuous", "autoclose_referenced_issues": true, "keep_latest_artifact": true, "runner_token_expiration_interval": null, "external_authorization_classification_label": "", "requirements_enabled": false, "requirements_access_level": "enabled", "security_and_compliance_enabled": true, "compliance_frameworks": [], "permissions": {"project_access": null, "group_access": {"access_level": 50, "notification_level": 3}}}, "emitted_at": 1674055492989} +{"stream": "branches", "data": {"name": "31-fake-issue-30", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/31-fake-issue-30", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055494854} +{"stream": "branches", "data": {"name": "master", "merged": false, "protected": true, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": true, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/master", "commit_id": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "project_id": 25157276}, "emitted_at": 1674055494855} +{"stream": "branches", "data": {"name": "new-test-branch", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055494855} +{"stream": "branches", "data": {"name": "new-test-branch-1", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-1", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055494856} +{"stream": "branches", "data": {"name": "new-test-branch-10", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-10", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055494857} +{"stream": "branches", "data": {"name": "new-test-branch-11", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-11", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055494857} +{"stream": "branches", "data": {"name": "new-test-branch-12", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-12", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055494857} +{"stream": "branches", "data": {"name": "new-test-branch-13", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-13", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055494857} +{"stream": "branches", "data": {"name": "new-test-branch-14", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-14", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055494857} +{"stream": "branches", "data": {"name": "new-test-branch-15", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-15", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055494857} +{"stream": "commits", "data": {"id": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "short_id": "6ad3dd49", "created_at": "2021-03-18T12:51:05.000+00:00", "parent_ids": ["2831d897ba0214f8d3168647e8ad4232b83987ef", "028c02d96f40afe9b4d1173c1d0f712dd6d07302"], "title": "Merge branch 'ykurochkin/add-fake-CI-config' into 'master'", "message": "Merge branch 'ykurochkin/add-fake-CI-config' into 'master'\n\nadd fake CI config\n\nSee merge request new-group-airbute/new-ci-test-project!3", "author_name": "Alexander Arhipenko", "author_email": "integration-test@airbyte.io", "authored_date": "2021-03-18T12:51:05.000+00:00", "committer_name": "Alexander Arhipenko", "committer_email": "integration-test@airbyte.io", "committed_date": "2021-03-18T12:51:05.000+00:00", "trailers": {}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/6ad3dd49539391774db738c9e7b7d69f2d872c98", "stats": {"additions": 14, "deletions": 0, "total": 14}, "project_id": 25157276}, "emitted_at": 1674055498755} +{"stream": "commits", "data": {"id": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "short_id": "028c02d9", "created_at": "2021-03-18T14:48:41.000+02:00", "parent_ids": ["2831d897ba0214f8d3168647e8ad4232b83987ef"], "title": "add fake CI config", "message": "add fake CI config\n", "author_name": "ykurochkin", "author_email": "zhenia.kurochkin@gmail.com", "authored_date": "2021-03-18T14:48:41.000+02:00", "committer_name": "ykurochkin", "committer_email": "zhenia.kurochkin@gmail.com", "committed_date": "2021-03-18T14:48:41.000+02:00", "trailers": {}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/028c02d96f40afe9b4d1173c1d0f712dd6d07302", "stats": {"additions": 14, "deletions": 0, "total": 14}, "project_id": 25157276}, "emitted_at": 1674055498756} +{"stream": "commits", "data": {"id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "short_id": "2831d897", "created_at": "2021-03-15T15:08:36.000+00:00", "parent_ids": [], "title": "Initial commit", "message": "Initial commit", "author_name": "Alexander Arhipenko", "author_email": "integration-test@airbyte.io", "authored_date": "2021-03-15T15:08:36.000+00:00", "committer_name": "Alexander Arhipenko", "committer_email": "integration-test@airbyte.io", "committed_date": "2021-03-15T15:08:36.000+00:00", "trailers": {}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef", "stats": {"additions": 2, "deletions": 0, "total": 2}, "project_id": 25157276}, "emitted_at": 1674055498757} +{"stream": "commits", "data": {"id": "27329d3afac51fbf2762428e12f2635d1137c549", "short_id": "27329d3a", "created_at": "2021-02-15T15:52:52.000+00:00", "parent_ids": ["b362ea7aa65515dc35ff3a93423478b2143e771d"], "title": "Update README.md", "message": "Update README.md", "author_name": "Administrator", "author_email": "admin@example.com", "authored_date": "2021-02-15T15:52:52.000+00:00", "committer_name": "Administrator", "committer_email": "admin@example.com", "committed_date": "2021-02-15T15:52:52.000+00:00", "trailers": {}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/commit/27329d3afac51fbf2762428e12f2635d1137c549", "stats": {"additions": 6, "deletions": 0, "total": 6}, "project_id": 25156633}, "emitted_at": 1674055500862} +{"stream": "commits", "data": {"id": "b362ea7aa65515dc35ff3a93423478b2143e771d", "short_id": "b362ea7a", "created_at": "2021-02-15T15:52:03.000+00:00", "parent_ids": [], "title": "Initial commit", "message": "Initial commit", "author_name": "Administrator", "author_email": "admin@example.com", "authored_date": "2021-02-15T15:52:03.000+00:00", "committer_name": "Administrator", "committer_email": "admin@example.com", "committed_date": "2021-02-15T15:52:03.000+00:00", "trailers": {}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/commit/b362ea7aa65515dc35ff3a93423478b2143e771d", "stats": {"additions": 2, "deletions": 0, "total": 2}, "project_id": 25156633}, "emitted_at": 1674055500863} +{"stream": "commits", "data": {"id": "fb24e6736b3a959a59e49b56d2d83a28ea3ae15b", "short_id": "fb24e673", "created_at": "2022-12-02T14:26:55.000+00:00", "parent_ids": [], "title": "Initial commit", "message": "Initial commit", "author_name": "Alexander Arhipenko", "author_email": "integration-test@airbyte.io", "authored_date": "2022-12-02T14:26:55.000+00:00", "committer_name": "Alexander Arhipenko", "committer_email": "integration-test@airbyte.io", "committed_date": "2022-12-02T14:26:55.000+00:00", "trailers": {}, "web_url": "https://gitlab.com/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup/-/commit/fb24e6736b3a959a59e49b56d2d83a28ea3ae15b", "stats": {"additions": 92, "deletions": 0, "total": 92}, "project_id": 41551658}, "emitted_at": 1674055501275} +{"stream": "group_issue_boards", "data": {"id": 5099065, "name": "Development", "hide_backlog_list": false, "hide_closed_list": false, "project": null, "lists": [], "group": {"id": 11329647, "web_url": "https://gitlab.com/groups/new-group-airbute", "name": "New Group Airbute"}, "group_id": 11329647}, "emitted_at": 1674055501717} +{"stream": "issues", "data": {"id": 80943819, "iid": 32, "project_id": 25157276, "title": "Fake Issue 31", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:42.206Z", "updated_at": "2021-03-15T15:22:42.206Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/32", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/32", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/32/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/32/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#32", "relative": "#32", "full": "new-group-airbute/new-ci-test-project#32"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055506333} +{"stream": "issues", "data": {"id": 80943818, "iid": 31, "project_id": 25157276, "title": "Fake Issue 30", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:41.337Z", "updated_at": "2021-03-15T16:08:06.041Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 1, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/31", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/31", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/31/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/31/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#31", "relative": "#31", "full": "new-group-airbute/new-ci-test-project#31"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055506334} +{"stream": "issues", "data": {"id": 80943817, "iid": 30, "project_id": 25157276, "title": "Fake Issue 29", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:40.529Z", "updated_at": "2021-03-15T15:22:40.529Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/30", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/30", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/30/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/30/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#30", "relative": "#30", "full": "new-group-airbute/new-ci-test-project#30"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055506335} +{"stream": "issues", "data": {"id": 80943816, "iid": 29, "project_id": 25157276, "title": "Fake Issue 28", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:39.860Z", "updated_at": "2021-03-15T15:22:39.860Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/29", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/29", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/29/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/29/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#29", "relative": "#29", "full": "new-group-airbute/new-ci-test-project#29"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055506337} +{"stream": "issues", "data": {"id": 80943815, "iid": 28, "project_id": 25157276, "title": "Fake Issue 27", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:39.204Z", "updated_at": "2021-03-15T15:22:39.204Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/28", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/28", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/28/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/28/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#28", "relative": "#28", "full": "new-group-airbute/new-ci-test-project#28"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055506338} +{"stream": "issues", "data": {"id": 80943813, "iid": 27, "project_id": 25157276, "title": "Fake Issue 26", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:38.528Z", "updated_at": "2021-03-15T15:22:38.528Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/27", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/27", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/27/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/27/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#27", "relative": "#27", "full": "new-group-airbute/new-ci-test-project#27"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055506339} +{"stream": "issues", "data": {"id": 80943812, "iid": 26, "project_id": 25157276, "title": "Fake Issue 25", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:37.864Z", "updated_at": "2021-03-15T15:22:37.864Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/26", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/26", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/26/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/26/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#26", "relative": "#26", "full": "new-group-airbute/new-ci-test-project#26"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055506340} +{"stream": "issues", "data": {"id": 80943811, "iid": 25, "project_id": 25157276, "title": "Fake Issue 24", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:37.282Z", "updated_at": "2021-03-15T15:22:37.282Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/25", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/25", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/25/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/25/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#25", "relative": "#25", "full": "new-group-airbute/new-ci-test-project#25"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055506341} +{"stream": "issues", "data": {"id": 80943809, "iid": 24, "project_id": 25157276, "title": "Fake Issue 23", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:36.708Z", "updated_at": "2021-03-15T15:22:36.708Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/24", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/24", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/24/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/24/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#24", "relative": "#24", "full": "new-group-airbute/new-ci-test-project#24"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055506342} +{"stream": "issues", "data": {"id": 80943805, "iid": 23, "project_id": 25157276, "title": "Fake Issue 22", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:36.131Z", "updated_at": "2021-03-15T15:22:36.131Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/23", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/23", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/23/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/23/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#23", "relative": "#23", "full": "new-group-airbute/new-ci-test-project#23"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055506343} +{"stream": "jobs", "data": {"id": 1108959782, "status": "failed", "stage": "test", "name": "test-code-job2", "ref": "master", "tag": false, "coverage": null, "allow_failure": false, "created_at": "2021-03-18T12:51:06.294Z", "started_at": "2021-03-18T12:51:07.646Z", "finished_at": "2021-03-18T12:51:51.309Z", "duration": 43.662407, "queued_duration": 1.180926, "failure_reason": "script_failure", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959782", "project": {"ci_job_token_scope_enabled": false}, "artifacts": [{"file_type": "trace", "size": 2200, "filename": "job.log", "file_format": null}], "artifacts_expire_at": null, "tag_list": [], "user_id": 8375961, "pipeline_id": 272632767, "runner_id": 380986, "commit_id": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "project_id": 25157276}, "emitted_at": 1674055511626} +{"stream": "jobs", "data": {"id": 1108959779, "status": "failed", "stage": "test", "name": "test-code-job1", "ref": "master", "tag": false, "coverage": null, "allow_failure": false, "created_at": "2021-03-18T12:51:06.279Z", "started_at": "2021-03-18T12:51:07.943Z", "finished_at": "2021-03-18T12:51:50.943Z", "duration": 42.999853, "queued_duration": 1.349274, "failure_reason": "script_failure", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959779", "project": {"ci_job_token_scope_enabled": false}, "artifacts": [{"file_type": "trace", "size": 2182, "filename": "job.log", "file_format": null}], "artifacts_expire_at": null, "tag_list": [], "user_id": 8375961, "pipeline_id": 272632767, "runner_id": 380987, "commit_id": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "project_id": 25157276}, "emitted_at": 1674055511626} +{"stream": "jobs", "data": {"id": 1108952832, "status": "failed", "stage": "test", "name": "test-code-job2", "ref": "ykurochkin/add-fake-CI-config", "tag": false, "coverage": null, "allow_failure": false, "created_at": "2021-03-18T12:48:49.222Z", "started_at": "2021-03-18T12:48:50.732Z", "finished_at": "2021-03-18T12:49:37.961Z", "duration": 47.229034, "queued_duration": 1.422541, "failure_reason": "script_failure", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952832", "project": {"ci_job_token_scope_enabled": false}, "artifacts": [{"file_type": "trace", "size": 2223, "filename": "job.log", "file_format": null}], "artifacts_expire_at": null, "tag_list": [], "user_id": 8375961, "pipeline_id": 272631271, "runner_id": 44949, "commit_id": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "project_id": 25157276}, "emitted_at": 1674055512126} +{"stream": "jobs", "data": {"id": 1108952831, "status": "failed", "stage": "test", "name": "test-code-job1", "ref": "ykurochkin/add-fake-CI-config", "tag": false, "coverage": null, "allow_failure": false, "created_at": "2021-03-18T12:48:49.199Z", "started_at": "2021-03-18T12:48:50.064Z", "finished_at": "2021-03-18T12:49:34.277Z", "duration": 44.212296, "queued_duration": 0.735172, "failure_reason": "script_failure", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952831", "project": {"ci_job_token_scope_enabled": false}, "artifacts": [{"file_type": "trace", "size": 2205, "filename": "job.log", "file_format": null}], "artifacts_expire_at": null, "tag_list": [], "user_id": 8375961, "pipeline_id": 272631271, "runner_id": 380987, "commit_id": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "project_id": 25157276}, "emitted_at": 1674055512126} +{"stream": "project_milestones", "data": {"id": 1943705, "iid": 51, "project_id": 25157276, "title": "Project Milestone 51", "description": null, "state": "active", "created_at": "2021-03-15T15:33:16.915Z", "updated_at": "2021-03-15T15:33:16.915Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/51"}, "emitted_at": 1674055515241} +{"stream": "project_milestones", "data": {"id": 1943704, "iid": 50, "project_id": 25157276, "title": "Project Milestone 50", "description": null, "state": "active", "created_at": "2021-03-15T15:33:16.329Z", "updated_at": "2021-03-15T15:33:16.329Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/50"}, "emitted_at": 1674055515242} +{"stream": "project_milestones", "data": {"id": 1943703, "iid": 49, "project_id": 25157276, "title": "Project Milestone 49", "description": null, "state": "active", "created_at": "2021-03-15T15:33:15.960Z", "updated_at": "2021-03-15T15:33:15.960Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/49"}, "emitted_at": 1674055515242} +{"stream": "project_milestones", "data": {"id": 1943702, "iid": 48, "project_id": 25157276, "title": "Project Milestone 48", "description": null, "state": "active", "created_at": "2021-03-15T15:33:15.604Z", "updated_at": "2021-03-15T15:33:15.604Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/48"}, "emitted_at": 1674055515243} +{"stream": "project_milestones", "data": {"id": 1943701, "iid": 47, "project_id": 25157276, "title": "Project Milestone 47", "description": null, "state": "active", "created_at": "2021-03-15T15:33:15.232Z", "updated_at": "2021-03-15T15:33:15.232Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/47"}, "emitted_at": 1674055515244} +{"stream": "project_milestones", "data": {"id": 1943700, "iid": 46, "project_id": 25157276, "title": "Project Milestone 46", "description": null, "state": "active", "created_at": "2021-03-15T15:33:14.860Z", "updated_at": "2021-03-15T15:33:14.860Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/46"}, "emitted_at": 1674055515244} +{"stream": "project_milestones", "data": {"id": 1943699, "iid": 45, "project_id": 25157276, "title": "Project Milestone 45", "description": null, "state": "active", "created_at": "2021-03-15T15:33:14.450Z", "updated_at": "2021-03-15T15:33:14.450Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/45"}, "emitted_at": 1674055515244} +{"stream": "project_milestones", "data": {"id": 1943698, "iid": 44, "project_id": 25157276, "title": "Project Milestone 44", "description": null, "state": "active", "created_at": "2021-03-15T15:33:14.042Z", "updated_at": "2021-03-15T15:33:14.042Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/44"}, "emitted_at": 1674055515244} +{"stream": "project_milestones", "data": {"id": 1943697, "iid": 43, "project_id": 25157276, "title": "Project Milestone 43", "description": null, "state": "active", "created_at": "2021-03-15T15:33:13.668Z", "updated_at": "2021-03-15T15:33:13.668Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/43"}, "emitted_at": 1674055515244} +{"stream": "project_milestones", "data": {"id": 1943696, "iid": 42, "project_id": 25157276, "title": "Project Milestone 42", "description": null, "state": "active", "created_at": "2021-03-15T15:33:13.240Z", "updated_at": "2021-03-15T15:33:13.240Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/42"}, "emitted_at": 1674055515245} +{"stream": "group_milestones", "data": {"id": 1943775, "iid": 21, "group_id": 11329647, "title": "Group Milestone 21", "description": null, "state": "active", "created_at": "2021-03-15T16:01:02.125Z", "updated_at": "2021-03-15T16:01:02.125Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/21"}, "emitted_at": 1674055518409} +{"stream": "group_milestones", "data": {"id": 1943774, "iid": 20, "group_id": 11329647, "title": "Group Milestone 20", "description": null, "state": "active", "created_at": "2021-03-15T16:01:01.682Z", "updated_at": "2021-03-15T16:01:01.682Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/20"}, "emitted_at": 1674055518409} +{"stream": "group_milestones", "data": {"id": 1943773, "iid": 19, "group_id": 11329647, "title": "Group Milestone 19", "description": null, "state": "active", "created_at": "2021-03-15T16:01:01.067Z", "updated_at": "2021-03-15T16:01:01.067Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/19"}, "emitted_at": 1674055518409} +{"stream": "group_milestones", "data": {"id": 1943772, "iid": 18, "group_id": 11329647, "title": "Group Milestone 18", "description": null, "state": "active", "created_at": "2021-03-15T16:01:00.572Z", "updated_at": "2021-03-15T16:01:00.572Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/18"}, "emitted_at": 1674055518409} +{"stream": "group_milestones", "data": {"id": 1943771, "iid": 17, "group_id": 11329647, "title": "Group Milestone 17", "description": null, "state": "active", "created_at": "2021-03-15T16:01:00.136Z", "updated_at": "2021-03-15T16:01:00.136Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/17"}, "emitted_at": 1674055518410} +{"stream": "group_milestones", "data": {"id": 1943770, "iid": 16, "group_id": 11329647, "title": "Group Milestone 16", "description": null, "state": "active", "created_at": "2021-03-15T16:00:59.507Z", "updated_at": "2021-03-15T16:00:59.507Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/16"}, "emitted_at": 1674055518410} +{"stream": "group_milestones", "data": {"id": 1943769, "iid": 15, "group_id": 11329647, "title": "Group Milestone 15", "description": null, "state": "active", "created_at": "2021-03-15T16:00:59.133Z", "updated_at": "2021-03-15T16:00:59.133Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/15"}, "emitted_at": 1674055518410} +{"stream": "group_milestones", "data": {"id": 1943768, "iid": 14, "group_id": 11329647, "title": "Group Milestone 14", "description": null, "state": "active", "created_at": "2021-03-15T16:00:58.763Z", "updated_at": "2021-03-15T16:00:58.763Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/14"}, "emitted_at": 1674055518410} +{"stream": "group_milestones", "data": {"id": 1943767, "iid": 13, "group_id": 11329647, "title": "Group Milestone 13", "description": null, "state": "active", "created_at": "2021-03-15T16:00:58.315Z", "updated_at": "2021-03-15T16:00:58.315Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/13"}, "emitted_at": 1674055518410} +{"stream": "group_milestones", "data": {"id": 1943766, "iid": 12, "group_id": 11329647, "title": "Group Milestone 12", "description": null, "state": "active", "created_at": "2021-03-15T16:00:57.929Z", "updated_at": "2021-03-15T16:00:57.929Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/12"}, "emitted_at": 1674055518411} +{"stream": "project_members", "data": {"access_level": 40, "created_at": "2021-03-15T15:08:36.746Z", "created_by": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "project_id": 25157276}, "emitted_at": 1674055522658} +{"stream": "project_members", "data": {"access_level": 40, "created_at": "2022-12-02T08:50:10.348Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "project_id": 41541858}, "emitted_at": 1674055523259} +{"stream": "project_members", "data": {"access_level": 40, "created_at": "2022-12-02T08:51:28.434Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "project_id": 41541892}, "emitted_at": 1674055523706} +{"stream": "project_members", "data": {"access_level": 40, "created_at": "2021-03-10T17:16:54.405Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "project_id": 25032440}, "emitted_at": 1674055524068} +{"stream": "project_members", "data": {"access_level": 40, "created_at": "2022-12-02T08:52:12.187Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "project_id": 41541906}, "emitted_at": 1674055524413} +{"stream": "project_members", "data": {"access_level": 40, "created_at": "2021-03-15T14:46:31.550Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "project_id": 25156633}, "emitted_at": 1674055524825} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2021-03-15T15:55:53.658Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 11329647}, "emitted_at": 1674055525607} +{"stream": "group_members", "data": {"access_level": 30, "created_at": "2021-03-15T15:55:53.998Z", "created_by": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "expires_at": null, "id": 7904355, "username": "y.kurochkin", "name": "Yevhenii Kurochkin", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon", "web_url": "https://gitlab.com/y.kurochkin", "membership_state": "active", "group_id": 11329647}, "emitted_at": 1674055525607} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:46:22.834Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61014882}, "emitted_at": 1674055525949} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:54:42.303Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61015181}, "emitted_at": 1674055526461} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:56:21.862Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61015232}, "emitted_at": 1674055526871} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:56:34.266Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61015239}, "emitted_at": 1674055527281} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:47:02.469Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61014902}, "emitted_at": 1674055527690} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:55:27.120Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61015202}, "emitted_at": 1674055527968} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:48:04.786Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61014943}, "emitted_at": 1674055528307} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:45:53.544Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61014863}, "emitted_at": 1674055528777} +{"stream": "project_labels", "data": {"id": 19116944, "name": "Label 1", "description": null, "description_html": "", "text_color": "#333333", "color": "#ffff00", "subscribed": false, "priority": null, "is_project_label": true, "project_id": 25157276}, "emitted_at": 1674055530162} +{"stream": "project_labels", "data": {"id": 19117004, "name": "Label 1", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#008000", "subscribed": false, "priority": null, "is_project_label": false, "project_id": 25157276}, "emitted_at": 1674055530162} +{"stream": "project_labels", "data": {"id": 19116954, "name": "Label 10", "description": null, "description_html": "", "text_color": "#333333", "color": "#ff00ff", "subscribed": false, "priority": null, "is_project_label": true, "project_id": 25157276}, "emitted_at": 1674055530163} +{"stream": "project_labels", "data": {"id": 19117017, "name": "Label 10", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000080", "subscribed": false, "priority": null, "is_project_label": false, "project_id": 25157276}, "emitted_at": 1674055530163} +{"stream": "project_labels", "data": {"id": 19116955, "name": "Label 11", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#808000", "subscribed": false, "priority": null, "is_project_label": true, "project_id": 25157276}, "emitted_at": 1674055530164} +{"stream": "project_labels", "data": {"id": 19117018, "name": "Label 11", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#808080", "subscribed": false, "priority": null, "is_project_label": false, "project_id": 25157276}, "emitted_at": 1674055530164} +{"stream": "project_labels", "data": {"id": 19116956, "name": "Label 12", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#ff0000", "subscribed": false, "priority": null, "is_project_label": true, "project_id": 25157276}, "emitted_at": 1674055530165} +{"stream": "project_labels", "data": {"id": 19117019, "name": "Label 12", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000000", "subscribed": false, "priority": null, "is_project_label": false, "project_id": 25157276}, "emitted_at": 1674055530165} +{"stream": "project_labels", "data": {"id": 19117020, "name": "Label 13", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000000", "subscribed": false, "priority": null, "is_project_label": false, "project_id": 25157276}, "emitted_at": 1674055530165} +{"stream": "project_labels", "data": {"id": 19116957, "name": "Label 13", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#808000", "subscribed": false, "priority": null, "is_project_label": true, "project_id": 25157276}, "emitted_at": 1674055530165} +{"stream": "group_labels", "data": {"id": 19117004, "name": "Label 1", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#008000", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055538152} +{"stream": "group_labels", "data": {"id": 19117017, "name": "Label 10", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000080", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055538152} +{"stream": "group_labels", "data": {"id": 19117018, "name": "Label 11", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#808080", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055538153} +{"stream": "group_labels", "data": {"id": 19117019, "name": "Label 12", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000000", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055538154} +{"stream": "group_labels", "data": {"id": 19117020, "name": "Label 13", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000000", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055538154} +{"stream": "group_labels", "data": {"id": 19117021, "name": "Label 14", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#808080", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055538155} +{"stream": "group_labels", "data": {"id": 19117022, "name": "Label 15", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#0000ff", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055538155} +{"stream": "group_labels", "data": {"id": 19117023, "name": "Label 16", "description": null, "description_html": "", "text_color": "#333333", "color": "#ffffff", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055538155} +{"stream": "group_labels", "data": {"id": 19117024, "name": "Label 17", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#008000", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055538156} +{"stream": "group_labels", "data": {"id": 19117025, "name": "Label 18", "description": null, "description_html": "", "text_color": "#333333", "color": "#ffffff", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055538156} +{"stream": "merge_requests", "data": {"id": 92594931, "iid": 3, "project_id": 25157276, "title": "add fake CI config", "description": "", "state": "merged", "created_at": "2021-03-18T12:49:13.091Z", "updated_at": "2021-03-18T12:51:06.319Z", "merge_user": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "merged_at": "2021-03-18T12:51:06.470Z", "closed_at": null, "target_branch": "master", "source_branch": "ykurochkin/add-fake-CI-config", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": [], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "not_open", "sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "merge_commit_sha": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!3", "references": {"short": "!3", "relative": "!3", "full": "new-group-airbute/new-ci-test-project!3"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": 8375961}, "emitted_at": 1674055547596} +{"stream": "merge_requests", "data": {"id": 92593913, "iid": 2, "project_id": 25157276, "title": "update readme.md", "description": "", "state": "opened", "created_at": "2021-03-18T12:42:30.200Z", "updated_at": "2021-03-18T12:42:30.200Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "ykurochkin/test-branch", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": [], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!2", "references": {"short": "!2", "relative": "!2", "full": "new-group-airbute/new-ci-test-project!2"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055547598} +{"stream": "merge_requests", "data": {"id": 92111504, "iid": 1, "project_id": 25157276, "title": "Draft: Resolve \"Fake Issue 30\"", "description": "Closes #31", "state": "opened", "created_at": "2021-03-15T16:08:05.071Z", "updated_at": "2021-03-15T16:08:05.071Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "31-fake-issue-30", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "assignees": [8375961], "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": ["bug"], "draft": true, "work_in_progress": true, "merge_when_pipeline_succeeds": false, "merge_status": "cannot_be_merged", "detailed_merge_status": "draft_status", "sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!1", "references": {"short": "!1", "relative": "!1", "full": "new-group-airbute/new-ci-test-project!1"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": true, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": 8375961, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055547599} +{"stream": "merge_requests", "data": {"id": 92098762, "iid": 30, "project_id": 25156633, "title": "Id blanditiis consequatur ut.", "description": "##### Voluptatum\nPorro et quo. Laborum molestias ducimus. Labore dolorum adipisci. Quisquam est quis. Sint accusamus maxime.\n* Veritatis. \n* Eos. \n* Adipisci. \n* Quibusdam. \n* Sint. \n* Consequuntur. \n* Hic. \n* Voluptate. \n* Velit.", "state": "opened", "created_at": "2021-02-15T15:55:38.117Z", "updated_at": "2021-02-15T15:55:38.117Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "laudantium-unde-et-iste-et", "user_notes_count": 15, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["asperiores-ex", "quidem-labore", "sed-consequuntur"], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "d49703b85913ee7a8c85e1893057ef4cdb06ff85", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!30", "references": {"short": "!30", "relative": "!30", "full": "airbyte.io/ci-test-project!30"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/30", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055549812} +{"stream": "merge_requests", "data": {"id": 92098761, "iid": 29, "project_id": 25156633, "title": "Fugiat aut voluptatem voluptas.", "description": "###### Unde\nEligendi nemo quam. Veritatis delectus iure. Placeat ut odit. Officiis accusantium sit. Eos sequi cupiditate.\n# Eum", "state": "opened", "created_at": "2021-02-15T15:55:34.534Z", "updated_at": "2021-02-15T15:55:34.534Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "ea-dolor-quia-et-sint", "user_notes_count": 4, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["earum-eaque", "nisi-et", "sed-voluptatem"], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "45afadfbf4eb1a9d6468950b23e8557bf72445fa", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!29", "references": {"short": "!29", "relative": "!29", "full": "airbyte.io/ci-test-project!29"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/29", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055549813} +{"stream": "merge_requests", "data": {"id": 92098758, "iid": 28, "project_id": 25156633, "title": "Delectus sit quod repellendus.", "description": "###### Corporis\nMolestias eius corrupti. Est maiores ut. Deleniti itaque deserunt. Perspiciatis quis et. Non et quia.\n### Dolorum\nNihil at et. Eligendi recusandae omnis. Eaque ratione dolorem.\n### Quam\nRem ad vel. Officiis sint voluptatem. Asperiores odit non.\n0. Hic. \n1. Labore. \n2. Voluptates. \n3. Dolores. \n4. Laborum. \n5. Non. \n6. Odit.", "state": "opened", "created_at": "2021-02-15T15:55:31.164Z", "updated_at": "2021-02-15T15:55:31.164Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "ipsum-consequatur-et-in-et", "user_notes_count": 19, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["nisi-et", "omnis-assumenda", "ut-incidunt"], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "5b8695fe02d2856fa9e3249d757aea89832b8d2e", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!28", "references": {"short": "!28", "relative": "!28", "full": "airbyte.io/ci-test-project!28"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/28", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055549813} +{"stream": "merge_requests", "data": {"id": 92098756, "iid": 27, "project_id": 25156633, "title": "Odio aut et rerum.", "description": "##### Aut\nNon labore nemo. Architecto ullam ut. Consequatur sit aut. Qui officia consequatur. Blanditiis facilis consequatur.\n```ruby\nError.\n```", "state": "opened", "created_at": "2021-02-15T15:55:27.534Z", "updated_at": "2021-02-15T15:55:27.534Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "sapiente-et-possimus-neque-est", "user_notes_count": 14, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["animi-exercitationem", "ex-commodi", "voluptas-officiis"], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "e604947173cd56863979030ed39bcdf7dcf8727a", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!27", "references": {"short": "!27", "relative": "!27", "full": "airbyte.io/ci-test-project!27"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/27", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055549813} +{"stream": "merge_requests", "data": {"id": 92098753, "iid": 26, "project_id": 25156633, "title": "Nihil possimus et nulla.", "description": "##### Eveniet\nVeritatis incidunt impedit. Sunt voluptas nisi. Ut quia et. Optio nihil recusandae. Eum ipsam illo.\n~Odio~ sed repudiandae. Cum consequuntur id. Quas molestias magnam.", "state": "opened", "created_at": "2021-02-15T15:55:24.768Z", "updated_at": "2021-02-15T15:55:24.768Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "qui-in-quod-nam-voluptatem", "user_notes_count": 9, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["architecto-vel", "in-qui", "voluptatem-saepe"], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "6d473efbe556db92e5319591f393df63a3b4fa34", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!26", "references": {"short": "!26", "relative": "!26", "full": "airbyte.io/ci-test-project!26"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/26", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055549814} +{"stream": "merge_requests", "data": {"id": 92098751, "iid": 25, "project_id": 25156633, "title": "Cum non sint explicabo.", "description": "### Et\nAd omnis ab. Sint eveniet explicabo. Ut voluptatum velit. Corrupti dignissimos ipsa. Ad commodi consequatur.\n## Tenetur", "state": "opened", "created_at": "2021-02-15T15:55:21.303Z", "updated_at": "2021-02-15T15:55:21.303Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "aut-deleniti-est-voluptatum-repellat", "user_notes_count": 7, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["animi-exercitationem", "ex-commodi", "nisi-et"], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "01a2afda641dec50caf71ec92f898f9243e357f8", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!25", "references": {"short": "!25", "relative": "!25", "full": "airbyte.io/ci-test-project!25"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/25", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055549814} +{"stream": "merge_requests", "data": {"id": 92098745, "iid": 24, "project_id": 25156633, "title": "Dolores et cumque fuga.", "description": "###### Et\nVoluptates quo modi. Ut nihil autem. Enim id sint. Reiciendis quia molestiae. Nobis sit autem.\n### Occaecati\nEt exercitationem quam. Dolor nam quia. Eius consequatur corporis.\n* Sunt. \n* Doloremque. \n* Itaque. \n* Odit. \n* Aliquam.", "state": "opened", "created_at": "2021-02-15T15:55:18.655Z", "updated_at": "2021-02-15T15:55:18.655Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "modi-et-quam-sunt-consequatur", "user_notes_count": 15, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["architecto-vel", "ex-commodi", "odio-ut"], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "98e5e7c52ceeb55fd04d3f35bb461361770a3e79", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!24", "references": {"short": "!24", "relative": "!24", "full": "airbyte.io/ci-test-project!24"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/24", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055549814} +{"stream": "merge_request_commits", "data": {"id": 92594931, "iid": 3, "project_id": 25157276, "title": "add fake CI config", "description": "", "state": "merged", "created_at": "2021-03-18T12:49:13.091Z", "updated_at": "2021-03-18T12:51:06.319Z", "merged_by": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "merge_user": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "merged_at": "2021-03-18T12:51:06.470Z", "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "ykurochkin/add-fake-CI-config", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": [], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "not_open", "sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "merge_commit_sha": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!3", "references": {"short": "!3", "relative": "!3", "full": "new-group-airbute/new-ci-test-project!3"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "1", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": {"id": 272631271, "iid": 1, "project_id": 25157276, "sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "ref": "ykurochkin/add-fake-CI-config", "status": "failed", "source": "push", "created_at": "2021-03-18T12:48:49.174Z", "updated_at": "2021-03-18T12:49:38.092Z", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271", "before_sha": "0000000000000000000000000000000000000000", "tag": false, "yaml_errors": null, "user": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "started_at": "2021-03-18T12:48:50.166Z", "finished_at": "2021-03-18T12:49:38.084Z", "committed_at": null, "duration": 47, "queued_duration": null, "coverage": null, "detailed_status": {"icon": "status_failed", "text": "failed", "label": "failed", "group": "failed", "tooltip": "failed", "has_details": true, "details_path": "/new-group-airbute/new-ci-test-project/-/pipelines/272631271", "illustration": null, "favicon": "/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}}, "diff_refs": {"base_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "head_sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "start_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 3}, "emitted_at": 1674055551159} +{"stream": "merge_request_commits", "data": {"id": 92593913, "iid": 2, "project_id": 25157276, "title": "update readme.md", "description": "", "state": "opened", "created_at": "2021-03-18T12:42:30.200Z", "updated_at": "2021-03-18T12:42:30.200Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "ykurochkin/test-branch", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": [], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!2", "references": {"short": "!2", "relative": "!2", "full": "new-group-airbute/new-ci-test-project!2"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "1", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "head_sha": "9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129", "start_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 2}, "emitted_at": 1674055551655} +{"stream": "merge_request_commits", "data": {"id": 92111504, "iid": 1, "project_id": 25157276, "title": "Draft: Resolve \"Fake Issue 30\"", "description": "Closes #31", "state": "opened", "created_at": "2021-03-15T16:08:05.071Z", "updated_at": "2021-03-15T16:08:05.071Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "31-fake-issue-30", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [{"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}], "assignee": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": ["bug"], "draft": true, "work_in_progress": true, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "cannot_be_merged", "detailed_merge_status": "draft_status", "sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!1", "references": {"short": "!1", "relative": "!1", "full": "new-group-airbute/new-ci-test-project!1"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": true, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": null, "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "head_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "start_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 1}, "emitted_at": 1674055552163} +{"stream": "merge_request_commits", "data": {"id": 92098762, "iid": 30, "project_id": 25156633, "title": "Id blanditiis consequatur ut.", "description": "##### Voluptatum\nPorro et quo. Laborum molestias ducimus. Labore dolorum adipisci. Quisquam est quis. Sint accusamus maxime.\n* Veritatis. \n* Eos. \n* Adipisci. \n* Quibusdam. \n* Sint. \n* Consequuntur. \n* Hic. \n* Voluptate. \n* Velit.", "state": "opened", "created_at": "2021-02-15T15:55:38.117Z", "updated_at": "2021-02-15T15:55:38.117Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "laudantium-unde-et-iste-et", "user_notes_count": 15, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["asperiores-ex", "quidem-labore", "sed-consequuntur"], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "d49703b85913ee7a8c85e1893057ef4cdb06ff85", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!30", "references": {"short": "!30", "relative": "!30", "full": "airbyte.io/ci-test-project!30"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/30", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "18", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "27329d3afac51fbf2762428e12f2635d1137c549", "head_sha": "d49703b85913ee7a8c85e1893057ef4cdb06ff85", "start_sha": "27329d3afac51fbf2762428e12f2635d1137c549"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 30}, "emitted_at": 1674055556268} +{"stream": "merge_request_commits", "data": {"id": 92098761, "iid": 29, "project_id": 25156633, "title": "Fugiat aut voluptatem voluptas.", "description": "###### Unde\nEligendi nemo quam. Veritatis delectus iure. Placeat ut odit. Officiis accusantium sit. Eos sequi cupiditate.\n# Eum", "state": "opened", "created_at": "2021-02-15T15:55:34.534Z", "updated_at": "2021-02-15T15:55:34.534Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "ea-dolor-quia-et-sint", "user_notes_count": 4, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["earum-eaque", "nisi-et", "sed-voluptatem"], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "45afadfbf4eb1a9d6468950b23e8557bf72445fa", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!29", "references": {"short": "!29", "relative": "!29", "full": "airbyte.io/ci-test-project!29"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/29", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "17", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "27329d3afac51fbf2762428e12f2635d1137c549", "head_sha": "45afadfbf4eb1a9d6468950b23e8557bf72445fa", "start_sha": "27329d3afac51fbf2762428e12f2635d1137c549"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 29}, "emitted_at": 1674055556712} +{"stream": "merge_request_commits", "data": {"id": 92098758, "iid": 28, "project_id": 25156633, "title": "Delectus sit quod repellendus.", "description": "###### Corporis\nMolestias eius corrupti. Est maiores ut. Deleniti itaque deserunt. Perspiciatis quis et. Non et quia.\n### Dolorum\nNihil at et. Eligendi recusandae omnis. Eaque ratione dolorem.\n### Quam\nRem ad vel. Officiis sint voluptatem. Asperiores odit non.\n0. Hic. \n1. Labore. \n2. Voluptates. \n3. Dolores. \n4. Laborum. \n5. Non. \n6. Odit.", "state": "opened", "created_at": "2021-02-15T15:55:31.164Z", "updated_at": "2021-02-15T15:55:31.164Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "ipsum-consequatur-et-in-et", "user_notes_count": 19, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["nisi-et", "omnis-assumenda", "ut-incidunt"], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "5b8695fe02d2856fa9e3249d757aea89832b8d2e", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!28", "references": {"short": "!28", "relative": "!28", "full": "airbyte.io/ci-test-project!28"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/28", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "15", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "27329d3afac51fbf2762428e12f2635d1137c549", "head_sha": "5b8695fe02d2856fa9e3249d757aea89832b8d2e", "start_sha": "27329d3afac51fbf2762428e12f2635d1137c549"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 28}, "emitted_at": 1674055557160} +{"stream": "merge_request_commits", "data": {"id": 92098756, "iid": 27, "project_id": 25156633, "title": "Odio aut et rerum.", "description": "##### Aut\nNon labore nemo. Architecto ullam ut. Consequatur sit aut. Qui officia consequatur. Blanditiis facilis consequatur.\n```ruby\nError.\n```", "state": "opened", "created_at": "2021-02-15T15:55:27.534Z", "updated_at": "2021-02-15T15:55:27.534Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "sapiente-et-possimus-neque-est", "user_notes_count": 14, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["animi-exercitationem", "ex-commodi", "voluptas-officiis"], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "e604947173cd56863979030ed39bcdf7dcf8727a", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!27", "references": {"short": "!27", "relative": "!27", "full": "airbyte.io/ci-test-project!27"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/27", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "5", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "27329d3afac51fbf2762428e12f2635d1137c549", "head_sha": "e604947173cd56863979030ed39bcdf7dcf8727a", "start_sha": "27329d3afac51fbf2762428e12f2635d1137c549"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 27}, "emitted_at": 1674055557714} +{"stream": "merge_request_commits", "data": {"id": 92098753, "iid": 26, "project_id": 25156633, "title": "Nihil possimus et nulla.", "description": "##### Eveniet\nVeritatis incidunt impedit. Sunt voluptas nisi. Ut quia et. Optio nihil recusandae. Eum ipsam illo.\n~Odio~ sed repudiandae. Cum consequuntur id. Quas molestias magnam.", "state": "opened", "created_at": "2021-02-15T15:55:24.768Z", "updated_at": "2021-02-15T15:55:24.768Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "qui-in-quod-nam-voluptatem", "user_notes_count": 9, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["architecto-vel", "in-qui", "voluptatem-saepe"], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "6d473efbe556db92e5319591f393df63a3b4fa34", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!26", "references": {"short": "!26", "relative": "!26", "full": "airbyte.io/ci-test-project!26"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/26", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "18", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "27329d3afac51fbf2762428e12f2635d1137c549", "head_sha": "6d473efbe556db92e5319591f393df63a3b4fa34", "start_sha": "27329d3afac51fbf2762428e12f2635d1137c549"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 26}, "emitted_at": 1674055558732} +{"stream": "merge_request_commits", "data": {"id": 92098751, "iid": 25, "project_id": 25156633, "title": "Cum non sint explicabo.", "description": "### Et\nAd omnis ab. Sint eveniet explicabo. Ut voluptatum velit. Corrupti dignissimos ipsa. Ad commodi consequatur.\n## Tenetur", "state": "opened", "created_at": "2021-02-15T15:55:21.303Z", "updated_at": "2021-02-15T15:55:21.303Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "aut-deleniti-est-voluptatum-repellat", "user_notes_count": 7, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["animi-exercitationem", "ex-commodi", "nisi-et"], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "01a2afda641dec50caf71ec92f898f9243e357f8", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!25", "references": {"short": "!25", "relative": "!25", "full": "airbyte.io/ci-test-project!25"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/25", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "5", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "27329d3afac51fbf2762428e12f2635d1137c549", "head_sha": "01a2afda641dec50caf71ec92f898f9243e357f8", "start_sha": "27329d3afac51fbf2762428e12f2635d1137c549"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 25}, "emitted_at": 1674055559124} +{"stream": "merge_request_commits", "data": {"id": 92098745, "iid": 24, "project_id": 25156633, "title": "Dolores et cumque fuga.", "description": "###### Et\nVoluptates quo modi. Ut nihil autem. Enim id sint. Reiciendis quia molestiae. Nobis sit autem.\n### Occaecati\nEt exercitationem quam. Dolor nam quia. Eius consequatur corporis.\n* Sunt. \n* Doloremque. \n* Itaque. \n* Odit. \n* Aliquam.", "state": "opened", "created_at": "2021-02-15T15:55:18.655Z", "updated_at": "2021-02-15T15:55:18.655Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "modi-et-quam-sunt-consequatur", "user_notes_count": 15, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25156633, "target_project_id": 25156633, "labels": ["architecto-vel", "ex-commodi", "odio-ut"], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "98e5e7c52ceeb55fd04d3f35bb461361770a3e79", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": null, "reference": "!24", "references": {"short": "!24", "relative": "!24", "full": "airbyte.io/ci-test-project!24"}, "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/merge_requests/24", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "6", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "27329d3afac51fbf2762428e12f2635d1137c549", "head_sha": "98e5e7c52ceeb55fd04d3f35bb461361770a3e79", "start_sha": "27329d3afac51fbf2762428e12f2635d1137c549"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 24}, "emitted_at": 1674055559739} +{"stream": "releases", "data": {"name": "First release", "tag_name": "fake-tag-6", "description": "Test Release", "created_at": "2021-03-18T12:44:12.497Z", "released_at": "2021-03-18T12:44:12.497Z", "upcoming_release": false, "milestones": [1943704], "commit_path": "/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef", "tag_path": "/new-group-airbute/new-ci-test-project/-/tags/fake-tag-6", "assets": {"count": 4, "sources": [{"format": "zip", "url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.zip"}, {"format": "tar.gz", "url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.gz"}, {"format": "tar.bz2", "url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.bz2"}, {"format": "tar", "url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar"}], "links": []}, "evidences": [{"sha": "a616fdca9312ca5aa451bc1060ce91a672fd24cc0f4d", "filepath": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/evidences/855895.json", "collected_at": "2021-03-18T12:44:12.650Z"}], "_links": {"self": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6", "edit_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/edit"}, "author_id": 8375961, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055572863} +{"stream": "tags", "data": {"name": "fake-tag-1", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055576457} +{"stream": "tags", "data": {"name": "fake-tag-10", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055576457} +{"stream": "tags", "data": {"name": "fake-tag-11", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055576458} +{"stream": "tags", "data": {"name": "fake-tag-12", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055576458} +{"stream": "tags", "data": {"name": "fake-tag-13", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055576459} +{"stream": "tags", "data": {"name": "fake-tag-14", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055576459} +{"stream": "tags", "data": {"name": "fake-tag-15", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055576460} +{"stream": "tags", "data": {"name": "fake-tag-16", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055576460} +{"stream": "tags", "data": {"name": "fake-tag-17", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055576461} +{"stream": "tags", "data": {"name": "fake-tag-18", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055576461} +{"stream": "pipelines", "data": {"id": 272632767, "iid": 2, "project_id": 25157276, "sha": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "ref": "master", "status": "failed", "source": "push", "created_at": "2021-03-18T12:51:06.262Z", "updated_at": "2021-03-18T12:51:52.007Z", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767"}, "emitted_at": 1674055581056} +{"stream": "pipelines", "data": {"id": 272631271, "iid": 1, "project_id": 25157276, "sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "ref": "ykurochkin/add-fake-CI-config", "status": "failed", "source": "push", "created_at": "2021-03-18T12:48:49.174Z", "updated_at": "2021-03-18T12:49:38.092Z", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271"}, "emitted_at": 1674055581056} +{"stream": "pipelines_extended", "data": {"id": 272632767, "iid": 2, "project_id": 25157276, "sha": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "ref": "master", "status": "failed", "source": "push", "created_at": "2021-03-18T12:51:06.262Z", "updated_at": "2021-03-18T12:51:52.007Z", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767", "before_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "tag": false, "yaml_errors": null, "user": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "started_at": "2021-03-18T12:51:07.816Z", "finished_at": "2021-03-18T12:51:52.000Z", "committed_at": null, "duration": 43, "queued_duration": 1, "coverage": null, "detailed_status": {"icon": "status_failed", "text": "failed", "label": "failed", "group": "failed", "tooltip": "failed", "has_details": false, "details_path": "/new-group-airbute/new-ci-test-project/-/pipelines/272632767", "illustration": null, "favicon": "/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}}, "emitted_at": 1674055584403} +{"stream": "pipelines_extended", "data": {"id": 272631271, "iid": 1, "project_id": 25157276, "sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "ref": "ykurochkin/add-fake-CI-config", "status": "failed", "source": "push", "created_at": "2021-03-18T12:48:49.174Z", "updated_at": "2021-03-18T12:49:38.092Z", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271", "before_sha": "0000000000000000000000000000000000000000", "tag": false, "yaml_errors": null, "user": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "started_at": "2021-03-18T12:48:50.166Z", "finished_at": "2021-03-18T12:49:38.084Z", "committed_at": null, "duration": 47, "queued_duration": null, "coverage": null, "detailed_status": {"icon": "status_failed", "text": "failed", "label": "failed", "group": "failed", "tooltip": "failed", "has_details": false, "details_path": "/new-group-airbute/new-ci-test-project/-/pipelines/272631271", "illustration": null, "favicon": "/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}}, "emitted_at": 1674055584730} +{"stream": "users", "data": {"id": 7904355, "username": "y.kurochkin", "name": "Yevhenii Kurochkin", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon", "web_url": "https://gitlab.com/y.kurochkin"}, "emitted_at": 1674055588242} +{"stream": "users", "data": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "emitted_at": 1674055588243} +{"stream": "users", "data": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "emitted_at": 1674055588543} +{"stream": "users", "data": {"id": 7904355, "username": "y.kurochkin", "name": "Yevhenii Kurochkin", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon", "web_url": "https://gitlab.com/y.kurochkin"}, "emitted_at": 1674055588944} +{"stream": "users", "data": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "emitted_at": 1674055588944} +{"stream": "users", "data": {"id": 7904355, "username": "y.kurochkin", "name": "Yevhenii Kurochkin", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon", "web_url": "https://gitlab.com/y.kurochkin"}, "emitted_at": 1674055589446} +{"stream": "users", "data": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "emitted_at": 1674055589447} +{"stream": "users", "data": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "emitted_at": 1674055589844} +{"stream": "users", "data": {"id": 7904355, "username": "y.kurochkin", "name": "Yevhenii Kurochkin", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon", "web_url": "https://gitlab.com/y.kurochkin"}, "emitted_at": 1674055590157} +{"stream": "users", "data": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "emitted_at": 1674055590158} +{"stream": "epics", "data": {"id": 678569, "iid": 1, "color": "#1068bf", "text_color": "#FFFFFF", "group_id": 11266951, "parent_id": null, "parent_iid": null, "title": "Source Gitlab: certify to Beta", "description": "Lorem ipsum", "confidential": false, "start_date": "2022-12-11", "start_date_is_fixed": true, "start_date_fixed": "2022-12-11", "start_date_from_inherited_source": null, "start_date_from_milestones": null, "end_date": "2022-12-30", "due_date": "2022-12-30", "due_date_is_fixed": true, "due_date_fixed": "2022-12-30", "due_date_from_inherited_source": null, "due_date_from_milestones": null, "state": "opened", "web_edit_url": "/groups/airbyte.io/-/epics/1", "web_url": "https://gitlab.com/groups/airbyte.io/-/epics/1", "references": {"short": "&1", "relative": "&1", "full": "airbyte.io&1"}, "created_at": "2022-12-11T10:50:04.280Z", "updated_at": "2022-12-11T10:50:26.276Z", "closed_at": null, "labels": [], "upvotes": 1, "downvotes": 0, "_links": {"self": "https://gitlab.com/api/v4/groups/11266951/epics/1", "epic_issues": "https://gitlab.com/api/v4/groups/11266951/epics/1/issues", "group": "https://gitlab.com/api/v4/groups/11266951", "parent": null}, "author_id": 8375961}, "emitted_at": 1674055595073} +{"stream": "epic_issues", "data": {"id": 120214448, "iid": 31, "project_id": 25156633, "title": "Unit tests", "description": null, "state": "opened", "created_at": "2022-12-11T10:50:25.940Z", "updated_at": "2022-12-11T10:50:25.940Z", "closed_at": null, "closed_by": null, "labels": [], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/airbyte.io/ci-test-project/-/issues/31", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "weight": null, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25156633/issues/31", "notes": "https://gitlab.com/api/v4/projects/25156633/issues/31/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25156633/issues/31/award_emoji", "project": "https://gitlab.com/api/v4/projects/25156633", "closed_as_duplicate_of": null}, "references": {"short": "#31", "relative": "#31", "full": "airbyte.io/ci-test-project#31"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "epic_iid": 1, "epic": {"id": 678569, "iid": 1, "title": "Source Gitlab: certify to Beta", "url": "/groups/airbyte.io/-/epics/1", "group_id": 11266951, "human_readable_end_date": "Dec 30, 2022", "human_readable_timestamp": "Past due"}, "iteration": null, "epic_issue_id": 1899479, "relative_position": 0, "milestone_id": null, "assignee_id": null, "author_id": 8375961}, "emitted_at": 1674055599613} diff --git a/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records_with_ids.jsonl b/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records_with_ids.jsonl index cf14e62c59e0..59df952ea511 100644 --- a/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records_with_ids.jsonl +++ b/airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records_with_ids.jsonl @@ -1,112 +1,112 @@ -{"stream":"groups","data":{"id":11329647,"web_url":"https://gitlab.com/groups/new-group-airbute","name":"New Group Airbute","path":"new-group-airbute","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute","full_path":"new-group-airbute","created_at":"2021-03-15T15:55:53.613Z","parent_id":null,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941-PhosPap-Sf1UxL1g6m4","prevent_sharing_groups_outside_hierarchy":false,"shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":25157276,"path_with_namespace":"new-group-airbute/new-ci-test-project"}]},"emitted_at":1671097594497} -{"stream":"groups","data":{"id":61014882,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg","name":"Test Private SG","path":"test-private-sg","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg","created_at":"2022-12-02T08:46:22.648Z","parent_id":61014863,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941bjUaJQy2zzar-JmNBjfq","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097595098} -{"stream":"groups","data":{"id":61015181,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1","name":"Test Private SubSubG 1","path":"test-private-subsubg-1","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Private SubSubG 1","full_path":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1","created_at":"2022-12-02T08:54:42.252Z","parent_id":61014943,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941x8xQf6K-UvnnyJ-bcut4","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41551658,"path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup"}]},"emitted_at":1671097595520} -{"stream":"groups","data":{"id":61015232,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2","name":"Test Private SubSubG 2","path":"test-private-subsubg-2","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2","created_at":"2022-12-02T08:56:21.783Z","parent_id":61014882,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941bnTmxzY-5zek69yJ7s4r","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097595858} -{"stream":"groups","data":{"id":61015239,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3","name":"Test Private SubSubG 3","path":"test-private-subsubg-3","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2 / Test Private SubSubG 3","full_path":"new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3","created_at":"2022-12-02T08:56:34.202Z","parent_id":61015232,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941fxQ648-7Mt4f2K11VUwm","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097596233} -{"stream":"groups","data":{"id":61014902,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg","name":"Test Public SG","path":"test-public-sg","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG","full_path":"new-group-airbute/test-public-sg","created_at":"2022-12-02T08:47:02.412Z","parent_id":11329647,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941iDo59yBXTTUMQUQztr_x","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541906,"path_with_namespace":"new-group-airbute/test-public-sg/test-public-project-1"}]},"emitted_at":1671097596646} -{"stream":"groups","data":{"id":61015202,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1","name":"Test Public SubSubG 1","path":"test-public-subsubg-1","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2 / Test Public SubSubG 1","full_path":"new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1","created_at":"2022-12-02T08:55:27.046Z","parent_id":61014943,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941K9JsRDnw2J5ZQxgCDr6d","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[]},"emitted_at":1671097597175} -{"stream":"groups","data":{"id":61014943,"web_url":"https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2","name":"Test SG Public 2","path":"test-sg-public-2","description":"","visibility":"public","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Public SG / Test SG Public 2","full_path":"new-group-airbute/test-public-sg/test-sg-public-2","created_at":"2022-12-02T08:48:04.727Z","parent_id":61014902,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941eGbxua89EPU8uu4snVuj","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541858,"path_with_namespace":"new-group-airbute/test-public-sg/test-sg-public-2/test-project-1"}]},"emitted_at":1671097597574} -{"stream":"groups","data":{"id":61014863,"web_url":"https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte","name":"Test Subgroup Airbyte","path":"test-subgroup-airbyte","description":"","visibility":"private","share_with_group_lock":false,"require_two_factor_authentication":false,"two_factor_grace_period":48,"project_creation_level":"developer","auto_devops_enabled":null,"subgroup_creation_level":"maintainer","emails_disabled":null,"mentions_disabled":null,"lfs_enabled":true,"default_branch_protection":2,"avatar_url":null,"request_access_enabled":true,"full_name":"New Group Airbute / Test Subgroup Airbyte","full_path":"new-group-airbute/test-subgroup-airbyte","created_at":"2022-12-02T08:45:53.479Z","parent_id":11329647,"ldap_cn":null,"ldap_access":null,"shared_with_groups":[],"runners_token":"GR1348941yL2Jtfwss88thzmUPZv5","shared_projects":[],"shared_runners_minutes_limit":null,"extra_shared_runners_minutes_limit":null,"prevent_forking_outside_group":null,"membership_lock":false,"projects":[{"id":41541892,"path_with_namespace":"new-group-airbute/test-subgroup-airbyte/test-project-2"}]},"emitted_at":1671097597969} -{"stream":"projects","data":{"id":25157276,"description":"","name":"New CI Test Project ","name_with_namespace":"New Group Airbute / New CI Test Project ","path":"new-ci-test-project","path_with_namespace":"new-group-airbute/new-ci-test-project","created_at":"2021-03-15T15:08:36.498Z","default_branch":"master","tag_list":[],"topics":[],"ssh_url_to_repo":"git@gitlab.com:new-group-airbute/new-ci-test-project.git","http_url_to_repo":"https://gitlab.com/new-group-airbute/new-ci-test-project.git","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project","readme_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/blob/master/README.md","avatar_url":null,"forks_count":0,"star_count":0,"last_activity_at":"2022-12-13T09:39:47.235Z","namespace":{"id":11329647,"name":"New Group Airbute","path":"new-group-airbute","kind":"group","full_path":"new-group-airbute","parent_id":null,"avatar_url":null,"web_url":"https://gitlab.com/groups/new-group-airbute"},"container_registry_image_prefix":"registry.gitlab.com/new-group-airbute/new-ci-test-project","_links":{"self":"https://gitlab.com/api/v4/projects/25157276","issues":"https://gitlab.com/api/v4/projects/25157276/issues","merge_requests":"https://gitlab.com/api/v4/projects/25157276/merge_requests","repo_branches":"https://gitlab.com/api/v4/projects/25157276/repository/branches","labels":"https://gitlab.com/api/v4/projects/25157276/labels","events":"https://gitlab.com/api/v4/projects/25157276/events","members":"https://gitlab.com/api/v4/projects/25157276/members","cluster_agents":"https://gitlab.com/api/v4/projects/25157276/cluster_agents"},"packages_enabled":true,"empty_repo":false,"archived":false,"visibility":"private","resolve_outdated_diff_discussions":false,"container_expiration_policy":{"cadence":"1d","enabled":false,"keep_n":10,"older_than":"90d","name_regex":".*","name_regex_keep":null,"next_run_at":"2021-03-16T15:08:36.518Z"},"issues_enabled":true,"merge_requests_enabled":true,"wiki_enabled":true,"jobs_enabled":true,"snippets_enabled":true,"container_registry_enabled":true,"service_desk_enabled":true,"service_desk_address":"contact-project+new-group-airbute-new-ci-test-project-25157276-issue-@incoming.gitlab.com","can_create_merge_request_in":true,"issues_access_level":"enabled","repository_access_level":"enabled","merge_requests_access_level":"enabled","forking_access_level":"enabled","wiki_access_level":"enabled","builds_access_level":"enabled","snippets_access_level":"enabled","pages_access_level":"private","operations_access_level":"enabled","analytics_access_level":"enabled","container_registry_access_level":"enabled","security_and_compliance_access_level":"private","releases_access_level":"enabled","environments_access_level":"enabled","feature_flags_access_level":"enabled","infrastructure_access_level":"enabled","monitor_access_level":"enabled","emails_disabled":null,"shared_runners_enabled":true,"lfs_enabled":true,"creator_id":8375961,"import_url":null,"import_type":null,"import_status":"none","import_error":null,"open_issues_count":31,"runners_token":"GR1348941eMJgWDU69xyyshaNsaTZ","ci_default_git_depth":50,"ci_forward_deployment_enabled":true,"ci_job_token_scope_enabled":false,"ci_separated_caches":true,"ci_opt_in_jwt":false,"ci_allow_fork_pipelines_to_run_in_parent_project":true,"public_jobs":true,"build_git_strategy":"fetch","build_timeout":3600,"auto_cancel_pending_pipelines":"enabled","ci_config_path":"","shared_with_groups":[],"only_allow_merge_if_pipeline_succeeds":false,"allow_merge_on_skipped_pipeline":null,"restrict_user_defined_variables":false,"request_access_enabled":true,"only_allow_merge_if_all_discussions_are_resolved":false,"remove_source_branch_after_merge":true,"printing_merge_request_link_enabled":true,"merge_method":"merge","squash_option":"default_off","enforce_auth_checks_on_uploads":true,"suggestion_commit_message":null,"merge_commit_template":null,"squash_commit_template":null,"issue_branch_template":null,"statistics":{"commit_count":3,"storage_size":291925,"repository_size":283115,"wiki_size":0,"lfs_objects_size":0,"job_artifacts_size":8810,"pipeline_artifacts_size":0,"packages_size":0,"snippets_size":0,"uploads_size":0},"auto_devops_enabled":false,"auto_devops_deploy_strategy":"continuous","autoclose_referenced_issues":true,"keep_latest_artifact":true,"runner_token_expiration_interval":null,"external_authorization_classification_label":"","requirements_enabled":false,"requirements_access_level":"enabled","security_and_compliance_enabled":true,"compliance_frameworks":[],"permissions":{"project_access":{"access_level":40,"notification_level":3},"group_access":{"access_level":50,"notification_level":3}}},"emitted_at":1671097598417} -{"stream":"branches","data":{"name":"31-fake-issue-30","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/31-fake-issue-30","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599045} -{"stream":"branches","data":{"name":"master","merged":false,"protected":true,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":true,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/master","commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097599045} -{"stream":"branches","data":{"name":"new-test-branch","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599046} -{"stream":"branches","data":{"name":"new-test-branch-1","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-1","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599046} -{"stream":"branches","data":{"name":"new-test-branch-10","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-10","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599047} -{"stream":"branches","data":{"name":"new-test-branch-11","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-11","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599047} -{"stream":"branches","data":{"name":"new-test-branch-12","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-12","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599048} -{"stream":"branches","data":{"name":"new-test-branch-13","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-13","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599049} -{"stream":"branches","data":{"name":"new-test-branch-14","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-14","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599049} -{"stream":"branches","data":{"name":"new-test-branch-15","merged":true,"protected":false,"developers_can_push":false,"developers_can_merge":false,"can_push":true,"default":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-15","commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097599050} -{"stream":"commits","data":{"id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","short_id":"6ad3dd49","created_at":"2021-03-18T12:51:05.000+00:00","parent_ids":["2831d897ba0214f8d3168647e8ad4232b83987ef","028c02d96f40afe9b4d1173c1d0f712dd6d07302"],"title":"Merge branch 'ykurochkin/add-fake-CI-config' into 'master'","message":"Merge branch 'ykurochkin/add-fake-CI-config' into 'master'\n\nadd fake CI config\n\nSee merge request new-group-airbute/new-ci-test-project!3","author_name":"Alexander Arhipenko","author_email":"integration-test@airbyte.io","authored_date":"2021-03-18T12:51:05.000+00:00","committer_name":"Alexander Arhipenko","committer_email":"integration-test@airbyte.io","committed_date":"2021-03-18T12:51:05.000+00:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/6ad3dd49539391774db738c9e7b7d69f2d872c98","stats":{"additions":14,"deletions":0,"total":14},"project_id":25157276},"emitted_at":1671097600019} -{"stream":"commits","data":{"id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","short_id":"028c02d9","created_at":"2021-03-18T14:48:41.000+02:00","parent_ids":["2831d897ba0214f8d3168647e8ad4232b83987ef"],"title":"add fake CI config","message":"add fake CI config\n","author_name":"ykurochkin","author_email":"zhenia.kurochkin@gmail.com","authored_date":"2021-03-18T14:48:41.000+02:00","committer_name":"ykurochkin","committer_email":"zhenia.kurochkin@gmail.com","committed_date":"2021-03-18T14:48:41.000+02:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/028c02d96f40afe9b4d1173c1d0f712dd6d07302","stats":{"additions":14,"deletions":0,"total":14},"project_id":25157276},"emitted_at":1671097600020} -{"stream":"commits","data":{"id":"2831d897ba0214f8d3168647e8ad4232b83987ef","short_id":"2831d897","created_at":"2021-03-15T15:08:36.000+00:00","parent_ids":[],"title":"Initial commit","message":"Initial commit","author_name":"Alexander Arhipenko","author_email":"integration-test@airbyte.io","authored_date":"2021-03-15T15:08:36.000+00:00","committer_name":"Alexander Arhipenko","committer_email":"integration-test@airbyte.io","committed_date":"2021-03-15T15:08:36.000+00:00","trailers":{},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef","stats":{"additions":2,"deletions":0,"total":2},"project_id":25157276},"emitted_at":1671097600020} -{"stream":"group_issue_boards","data":{"id":5099065,"name":"Development","hide_backlog_list":false,"hide_closed_list":false,"project":null,"lists":[],"group":{"id":11329647,"web_url":"https://gitlab.com/groups/new-group-airbute","name":"New Group Airbute"},"group_id":11329647},"emitted_at":1671097600422} -{"stream":"issues","data":{"id":80943819,"iid":32,"project_id":25157276,"title":"Fake Issue 31","description":null,"state":"opened","created_at":"2021-03-15T15:22:42.206Z","updated_at":"2021-03-15T15:22:42.206Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/32","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/32","notes":"https://gitlab.com/api/v4/projects/25157276/issues/32/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/32/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#32","relative":"#32","full":"new-group-airbute/new-ci-test-project#32"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604219} -{"stream":"issues","data":{"id":80943818,"iid":31,"project_id":25157276,"title":"Fake Issue 30","description":null,"state":"opened","created_at":"2021-03-15T15:22:41.337Z","updated_at":"2021-03-15T16:08:06.041Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":1,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/31","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/31","notes":"https://gitlab.com/api/v4/projects/25157276/issues/31/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/31/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#31","relative":"#31","full":"new-group-airbute/new-ci-test-project#31"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604220} -{"stream":"issues","data":{"id":80943817,"iid":30,"project_id":25157276,"title":"Fake Issue 29","description":null,"state":"opened","created_at":"2021-03-15T15:22:40.529Z","updated_at":"2021-03-15T15:22:40.529Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/30","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/30","notes":"https://gitlab.com/api/v4/projects/25157276/issues/30/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/30/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#30","relative":"#30","full":"new-group-airbute/new-ci-test-project#30"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604222} -{"stream":"issues","data":{"id":80943816,"iid":29,"project_id":25157276,"title":"Fake Issue 28","description":null,"state":"opened","created_at":"2021-03-15T15:22:39.860Z","updated_at":"2021-03-15T15:22:39.860Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/29","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/29","notes":"https://gitlab.com/api/v4/projects/25157276/issues/29/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/29/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#29","relative":"#29","full":"new-group-airbute/new-ci-test-project#29"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604223} -{"stream":"issues","data":{"id":80943815,"iid":28,"project_id":25157276,"title":"Fake Issue 27","description":null,"state":"opened","created_at":"2021-03-15T15:22:39.204Z","updated_at":"2021-03-15T15:22:39.204Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/28","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/28","notes":"https://gitlab.com/api/v4/projects/25157276/issues/28/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/28/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#28","relative":"#28","full":"new-group-airbute/new-ci-test-project#28"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604224} -{"stream":"issues","data":{"id":80943813,"iid":27,"project_id":25157276,"title":"Fake Issue 26","description":null,"state":"opened","created_at":"2021-03-15T15:22:38.528Z","updated_at":"2021-03-15T15:22:38.528Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/27","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/27","notes":"https://gitlab.com/api/v4/projects/25157276/issues/27/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/27/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#27","relative":"#27","full":"new-group-airbute/new-ci-test-project#27"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604225} -{"stream":"issues","data":{"id":80943812,"iid":26,"project_id":25157276,"title":"Fake Issue 25","description":null,"state":"opened","created_at":"2021-03-15T15:22:37.864Z","updated_at":"2021-03-15T15:22:37.864Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/26","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/26","notes":"https://gitlab.com/api/v4/projects/25157276/issues/26/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/26/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#26","relative":"#26","full":"new-group-airbute/new-ci-test-project#26"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604226} -{"stream":"issues","data":{"id":80943811,"iid":25,"project_id":25157276,"title":"Fake Issue 24","description":null,"state":"opened","created_at":"2021-03-15T15:22:37.282Z","updated_at":"2021-03-15T15:22:37.282Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/25","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/25","notes":"https://gitlab.com/api/v4/projects/25157276/issues/25/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/25/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#25","relative":"#25","full":"new-group-airbute/new-ci-test-project#25"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604227} -{"stream":"issues","data":{"id":80943809,"iid":24,"project_id":25157276,"title":"Fake Issue 23","description":null,"state":"opened","created_at":"2021-03-15T15:22:36.708Z","updated_at":"2021-03-15T15:22:36.708Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/24","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/24","notes":"https://gitlab.com/api/v4/projects/25157276/issues/24/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/24/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#24","relative":"#24","full":"new-group-airbute/new-ci-test-project#24"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604229} -{"stream":"issues","data":{"id":80943805,"iid":23,"project_id":25157276,"title":"Fake Issue 22","description":null,"state":"opened","created_at":"2021-03-15T15:22:36.131Z","updated_at":"2021-03-15T15:22:36.131Z","closed_at":null,"labels":["bug"],"assignees":[],"type":"ISSUE","user_notes_count":0,"merge_requests_count":0,"upvotes":0,"downvotes":0,"due_date":null,"confidential":false,"discussion_locked":null,"issue_type":"issue","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/23","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"task_completion_status":{"count":0,"completed_count":0},"blocking_issues_count":0,"has_tasks":false,"_links":{"self":"https://gitlab.com/api/v4/projects/25157276/issues/23","notes":"https://gitlab.com/api/v4/projects/25157276/issues/23/notes","award_emoji":"https://gitlab.com/api/v4/projects/25157276/issues/23/award_emoji","project":"https://gitlab.com/api/v4/projects/25157276","closed_as_duplicate_of":null},"references":{"short":"#23","relative":"#23","full":"new-group-airbute/new-ci-test-project#23"},"severity":"UNKNOWN","moved_to_id":null,"service_desk_reply_to":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null},"emitted_at":1671097604230} -{"stream":"jobs","data":{"id":1108959782,"status":"failed","stage":"test","name":"test-code-job2","ref":"master","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:51:06.294Z","started_at":"2021-03-18T12:51:07.646Z","finished_at":"2021-03-18T12:51:51.309Z","duration":43.662407,"queued_duration":1.180926,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959782","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2200,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272632767,"runner_id":380986,"commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097605240} -{"stream":"jobs","data":{"id":1108959779,"status":"failed","stage":"test","name":"test-code-job1","ref":"master","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:51:06.279Z","started_at":"2021-03-18T12:51:07.943Z","finished_at":"2021-03-18T12:51:50.943Z","duration":42.999853,"queued_duration":1.349274,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959779","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2182,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272632767,"runner_id":380987,"commit_id":"6ad3dd49539391774db738c9e7b7d69f2d872c98","project_id":25157276},"emitted_at":1671097605240} -{"stream":"jobs","data":{"id":1108952832,"status":"failed","stage":"test","name":"test-code-job2","ref":"ykurochkin/add-fake-CI-config","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:48:49.222Z","started_at":"2021-03-18T12:48:50.732Z","finished_at":"2021-03-18T12:49:37.961Z","duration":47.229034,"queued_duration":1.422541,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952832","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2223,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272631271,"runner_id":44949,"commit_id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","project_id":25157276},"emitted_at":1671097605756} -{"stream":"jobs","data":{"id":1108952831,"status":"failed","stage":"test","name":"test-code-job1","ref":"ykurochkin/add-fake-CI-config","tag":false,"coverage":null,"allow_failure":false,"created_at":"2021-03-18T12:48:49.199Z","started_at":"2021-03-18T12:48:50.064Z","finished_at":"2021-03-18T12:49:34.277Z","duration":44.212296,"queued_duration":0.735172,"failure_reason":"script_failure","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952831","project":{"ci_job_token_scope_enabled":false},"artifacts":[{"file_type":"trace","size":2205,"filename":"job.log","file_format":null}],"artifacts_expire_at":null,"tag_list":[],"user_id":8375961,"pipeline_id":272631271,"runner_id":380987,"commit_id":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","project_id":25157276},"emitted_at":1671097605757} -{"stream":"project_milestones","data":{"id":1943705,"iid":51,"project_id":25157276,"title":"Project Milestone 51","description":null,"state":"active","created_at":"2021-03-15T15:33:16.915Z","updated_at":"2021-03-15T15:33:16.915Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/51"},"emitted_at":1671097606183} -{"stream":"project_milestones","data":{"id":1943704,"iid":50,"project_id":25157276,"title":"Project Milestone 50","description":null,"state":"active","created_at":"2021-03-15T15:33:16.329Z","updated_at":"2021-03-15T15:33:16.329Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/50"},"emitted_at":1671097606183} -{"stream":"project_milestones","data":{"id":1943703,"iid":49,"project_id":25157276,"title":"Project Milestone 49","description":null,"state":"active","created_at":"2021-03-15T15:33:15.960Z","updated_at":"2021-03-15T15:33:15.960Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/49"},"emitted_at":1671097606183} -{"stream":"project_milestones","data":{"id":1943702,"iid":48,"project_id":25157276,"title":"Project Milestone 48","description":null,"state":"active","created_at":"2021-03-15T15:33:15.604Z","updated_at":"2021-03-15T15:33:15.604Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/48"},"emitted_at":1671097606183} -{"stream":"project_milestones","data":{"id":1943701,"iid":47,"project_id":25157276,"title":"Project Milestone 47","description":null,"state":"active","created_at":"2021-03-15T15:33:15.232Z","updated_at":"2021-03-15T15:33:15.232Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/47"},"emitted_at":1671097606184} -{"stream":"project_milestones","data":{"id":1943700,"iid":46,"project_id":25157276,"title":"Project Milestone 46","description":null,"state":"active","created_at":"2021-03-15T15:33:14.860Z","updated_at":"2021-03-15T15:33:14.860Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/46"},"emitted_at":1671097606184} -{"stream":"project_milestones","data":{"id":1943699,"iid":45,"project_id":25157276,"title":"Project Milestone 45","description":null,"state":"active","created_at":"2021-03-15T15:33:14.450Z","updated_at":"2021-03-15T15:33:14.450Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/45"},"emitted_at":1671097606184} -{"stream":"project_milestones","data":{"id":1943698,"iid":44,"project_id":25157276,"title":"Project Milestone 44","description":null,"state":"active","created_at":"2021-03-15T15:33:14.042Z","updated_at":"2021-03-15T15:33:14.042Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/44"},"emitted_at":1671097606184} -{"stream":"project_milestones","data":{"id":1943697,"iid":43,"project_id":25157276,"title":"Project Milestone 43","description":null,"state":"active","created_at":"2021-03-15T15:33:13.668Z","updated_at":"2021-03-15T15:33:13.668Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/43"},"emitted_at":1671097606184} -{"stream":"project_milestones","data":{"id":1943696,"iid":42,"project_id":25157276,"title":"Project Milestone 42","description":null,"state":"active","created_at":"2021-03-15T15:33:13.240Z","updated_at":"2021-03-15T15:33:13.240Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/42"},"emitted_at":1671097606185} -{"stream":"group_milestones","data":{"id":1943775,"iid":21,"group_id":11329647,"title":"Group Milestone 21","description":null,"state":"active","created_at":"2021-03-15T16:01:02.125Z","updated_at":"2021-03-15T16:01:02.125Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/21"},"emitted_at":1671097606976} -{"stream":"group_milestones","data":{"id":1943774,"iid":20,"group_id":11329647,"title":"Group Milestone 20","description":null,"state":"active","created_at":"2021-03-15T16:01:01.682Z","updated_at":"2021-03-15T16:01:01.682Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/20"},"emitted_at":1671097606976} -{"stream":"group_milestones","data":{"id":1943773,"iid":19,"group_id":11329647,"title":"Group Milestone 19","description":null,"state":"active","created_at":"2021-03-15T16:01:01.067Z","updated_at":"2021-03-15T16:01:01.067Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/19"},"emitted_at":1671097606977} -{"stream":"group_milestones","data":{"id":1943772,"iid":18,"group_id":11329647,"title":"Group Milestone 18","description":null,"state":"active","created_at":"2021-03-15T16:01:00.572Z","updated_at":"2021-03-15T16:01:00.572Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/18"},"emitted_at":1671097606977} -{"stream":"group_milestones","data":{"id":1943771,"iid":17,"group_id":11329647,"title":"Group Milestone 17","description":null,"state":"active","created_at":"2021-03-15T16:01:00.136Z","updated_at":"2021-03-15T16:01:00.136Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/17"},"emitted_at":1671097606977} -{"stream":"group_milestones","data":{"id":1943770,"iid":16,"group_id":11329647,"title":"Group Milestone 16","description":null,"state":"active","created_at":"2021-03-15T16:00:59.507Z","updated_at":"2021-03-15T16:00:59.507Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/16"},"emitted_at":1671097606977} -{"stream":"group_milestones","data":{"id":1943769,"iid":15,"group_id":11329647,"title":"Group Milestone 15","description":null,"state":"active","created_at":"2021-03-15T16:00:59.133Z","updated_at":"2021-03-15T16:00:59.133Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/15"},"emitted_at":1671097606977} -{"stream":"group_milestones","data":{"id":1943768,"iid":14,"group_id":11329647,"title":"Group Milestone 14","description":null,"state":"active","created_at":"2021-03-15T16:00:58.763Z","updated_at":"2021-03-15T16:00:58.763Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/14"},"emitted_at":1671097606977} -{"stream":"group_milestones","data":{"id":1943767,"iid":13,"group_id":11329647,"title":"Group Milestone 13","description":null,"state":"active","created_at":"2021-03-15T16:00:58.315Z","updated_at":"2021-03-15T16:00:58.315Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/13"},"emitted_at":1671097606977} -{"stream":"group_milestones","data":{"id":1943766,"iid":12,"group_id":11329647,"title":"Group Milestone 12","description":null,"state":"active","created_at":"2021-03-15T16:00:57.929Z","updated_at":"2021-03-15T16:00:57.929Z","due_date":null,"start_date":null,"expired":false,"web_url":"https://gitlab.com/groups/new-group-airbute/-/milestones/12"},"emitted_at":1671097606978} -{"stream":"project_members","data":{"access_level":40,"created_at":"2021-03-15T15:08:36.746Z","created_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","project_id":25157276},"emitted_at":1671097610604} -{"stream":"group_members","data":{"access_level":50,"created_at":"2021-03-15T15:55:53.658Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":11329647},"emitted_at":1671097611277} -{"stream":"group_members","data":{"access_level":30,"created_at":"2021-03-15T15:55:53.998Z","created_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"expires_at":null,"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin","membership_state":"active","group_id":11329647},"emitted_at":1671097611278} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:46:22.834Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014882},"emitted_at":1671097611565} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:54:42.303Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015181},"emitted_at":1671097611853} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:56:21.862Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015232},"emitted_at":1671097612136} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:56:34.266Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015239},"emitted_at":1671097612458} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:47:02.469Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014902},"emitted_at":1671097612758} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:55:27.120Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61015202},"emitted_at":1671097613023} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:48:04.786Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014943},"emitted_at":1671097613325} -{"stream":"group_members","data":{"access_level":50,"created_at":"2022-12-02T08:45:53.544Z","expires_at":null,"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte","membership_state":"active","group_id":61014863},"emitted_at":1671097613741} -{"stream":"project_labels","data":{"id":19116944,"name":"Label 1","description":null,"description_html":"","text_color":"#333333","color":"#ffff00","subscribed":false,"priority":null,"is_project_label":true,"project_id":25157276},"emitted_at":1671097614434} -{"stream":"project_labels","data":{"id":19117004,"name":"Label 1","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"priority":null,"is_project_label":false,"project_id":25157276},"emitted_at":1671097614434} -{"stream":"project_labels","data":{"id":19116954,"name":"Label 10","description":null,"description_html":"","text_color":"#333333","color":"#ff00ff","subscribed":false,"priority":null,"is_project_label":true,"project_id":25157276},"emitted_at":1671097614434} -{"stream":"project_labels","data":{"id":19117017,"name":"Label 10","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000080","subscribed":false,"priority":null,"is_project_label":false,"project_id":25157276},"emitted_at":1671097614434} -{"stream":"project_labels","data":{"id":19116955,"name":"Label 11","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808000","subscribed":false,"priority":null,"is_project_label":true,"project_id":25157276},"emitted_at":1671097614434} -{"stream":"project_labels","data":{"id":19117018,"name":"Label 11","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"priority":null,"is_project_label":false,"project_id":25157276},"emitted_at":1671097614434} -{"stream":"project_labels","data":{"id":19116956,"name":"Label 12","description":null,"description_html":"","text_color":"#FFFFFF","color":"#ff0000","subscribed":false,"priority":null,"is_project_label":true,"project_id":25157276},"emitted_at":1671097614434} -{"stream":"project_labels","data":{"id":19117019,"name":"Label 12","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"priority":null,"is_project_label":false,"project_id":25157276},"emitted_at":1671097614435} -{"stream":"project_labels","data":{"id":19117020,"name":"Label 13","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"priority":null,"is_project_label":false,"project_id":25157276},"emitted_at":1671097614435} -{"stream":"project_labels","data":{"id":19116957,"name":"Label 13","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808000","subscribed":false,"priority":null,"is_project_label":true,"project_id":25157276},"emitted_at":1671097614435} -{"stream":"group_labels","data":{"id":19117004,"name":"Label 1","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"group_id":11329647},"emitted_at":1671097615792} -{"stream":"group_labels","data":{"id":19117017,"name":"Label 10","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000080","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} -{"stream":"group_labels","data":{"id":19117018,"name":"Label 11","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} -{"stream":"group_labels","data":{"id":19117019,"name":"Label 12","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} -{"stream":"group_labels","data":{"id":19117020,"name":"Label 13","description":null,"description_html":"","text_color":"#FFFFFF","color":"#000000","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} -{"stream":"group_labels","data":{"id":19117021,"name":"Label 14","description":null,"description_html":"","text_color":"#FFFFFF","color":"#808080","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} -{"stream":"group_labels","data":{"id":19117022,"name":"Label 15","description":null,"description_html":"","text_color":"#FFFFFF","color":"#0000ff","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} -{"stream":"group_labels","data":{"id":19117023,"name":"Label 16","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"group_id":11329647},"emitted_at":1671097615793} -{"stream":"group_labels","data":{"id":19117024,"name":"Label 17","description":null,"description_html":"","text_color":"#FFFFFF","color":"#008000","subscribed":false,"group_id":11329647},"emitted_at":1671097615794} -{"stream":"group_labels","data":{"id":19117025,"name":"Label 18","description":null,"description_html":"","text_color":"#333333","color":"#ffffff","subscribed":false,"group_id":11329647},"emitted_at":1671097615794} -{"stream":"merge_requests","data":{"id":92594931,"iid":3,"project_id":25157276,"title":"add fake CI config","description":"","state":"merged","created_at":"2021-03-18T12:49:13.091Z","updated_at":"2021-03-18T12:51:06.319Z","merge_user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merged_at":"2021-03-18T12:51:06.470Z","closed_at":null,"target_branch":"master","source_branch":"ykurochkin/add-fake-CI-config","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"not_open","sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","merge_commit_sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!3","references":{"short":"!3","relative":"!3","full":"new-group-airbute/new-ci-test-project!3"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":8375961},"emitted_at":1671097624183} -{"stream":"merge_requests","data":{"id":92593913,"iid":2,"project_id":25157276,"title":"update readme.md","description":"","state":"opened","created_at":"2021-03-18T12:42:30.200Z","updated_at":"2021-03-18T12:42:30.200Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/test-branch","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!2","references":{"short":"!2","relative":"!2","full":"new-group-airbute/new-ci-test-project!2"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":null,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097624183} -{"stream":"merge_requests","data":{"id":92111504,"iid":1,"project_id":25157276,"title":"Draft: Resolve \"Fake Issue 30\"","description":"Closes #31","state":"opened","created_at":"2021-03-15T16:08:05.071Z","updated_at":"2021-03-15T16:08:05.071Z","merge_user":null,"merged_at":null,"closed_at":null,"target_branch":"master","source_branch":"31-fake-issue-30","user_notes_count":0,"upvotes":0,"downvotes":0,"assignees":[8375961],"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":["bug"],"draft":true,"work_in_progress":true,"merge_when_pipeline_succeeds":false,"merge_status":"cannot_be_merged","detailed_merge_status":"draft_status","sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!1","references":{"short":"!1","relative":"!1","full":"new-group-airbute/new-ci-test-project!1"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":true,"blocking_discussions_resolved":true,"approvals_before_merge":null,"author_id":8375961,"assignee_id":8375961,"closed_by_id":null,"milestone_id":null,"merged_by_id":null},"emitted_at":1671097624184} -{"stream":"merge_request_commits","data":{"id":92594931,"iid":3,"project_id":25157276,"title":"add fake CI config","description":"","state":"merged","created_at":"2021-03-18T12:49:13.091Z","updated_at":"2021-03-18T12:51:06.319Z","merged_by":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merge_user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"merged_at":"2021-03-18T12:51:06.470Z","closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/add-fake-CI-config","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"not_open","sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","merge_commit_sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!3","references":{"short":"!3","relative":"!3","full":"new-group-airbute/new-ci-test-project!3"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"1","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271","before_sha":"0000000000000000000000000000000000000000","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:48:50.166Z","finished_at":"2021-03-18T12:49:38.084Z","committed_at":null,"duration":47,"queued_duration":null,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":true,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272631271","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":3},"emitted_at":1671097625277} -{"stream":"merge_request_commits","data":{"id":92593913,"iid":2,"project_id":25157276,"title":"update readme.md","description":"","state":"opened","created_at":"2021-03-18T12:42:30.200Z","updated_at":"2021-03-18T12:42:30.200Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"ykurochkin/test-branch","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[],"assignee":null,"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":[],"draft":false,"work_in_progress":false,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"can_be_merged","detailed_merge_status":"mergeable","sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!2","references":{"short":"!2","relative":"!2","full":"new-group-airbute/new-ci-test-project!2"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":false,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":"1","latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":2},"emitted_at":1671097625579} -{"stream":"merge_request_commits","data":{"id":92111504,"iid":1,"project_id":25157276,"title":"Draft: Resolve \"Fake Issue 30\"","description":"Closes #31","state":"opened","created_at":"2021-03-15T16:08:05.071Z","updated_at":"2021-03-15T16:08:05.071Z","merged_by":null,"merge_user":null,"merged_at":null,"closed_by":null,"closed_at":null,"target_branch":"master","source_branch":"31-fake-issue-30","user_notes_count":0,"upvotes":0,"downvotes":0,"author":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"assignees":[{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"}],"assignee":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"reviewers":[],"source_project_id":25157276,"target_project_id":25157276,"labels":["bug"],"draft":true,"work_in_progress":true,"milestone":null,"merge_when_pipeline_succeeds":false,"merge_status":"cannot_be_merged","detailed_merge_status":"draft_status","sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","merge_commit_sha":null,"squash_commit_sha":null,"discussion_locked":null,"should_remove_source_branch":null,"force_remove_source_branch":true,"reference":"!1","references":{"short":"!1","relative":"!1","full":"new-group-airbute/new-ci-test-project!1"},"web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1","time_stats":{"time_estimate":0,"total_time_spent":0,"human_time_estimate":null,"human_total_time_spent":null},"squash":false,"task_completion_status":{"count":0,"completed_count":0},"has_conflicts":true,"blocking_discussions_resolved":true,"approvals_before_merge":null,"subscribed":true,"changes_count":null,"latest_build_started_at":null,"latest_build_finished_at":null,"first_deployed_to_production_at":null,"pipeline":null,"head_pipeline":null,"diff_refs":{"base_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","head_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","start_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef"},"merge_error":null,"first_contribution":false,"user":{"can_merge":true},"merge_request_iid":1},"emitted_at":1671097626182} -{"stream":"releases","data":{"name":"First release","tag_name":"fake-tag-6","description":"Test Release","created_at":"2021-03-18T12:44:12.497Z","released_at":"2021-03-18T12:44:12.497Z","upcoming_release":false,"milestones":[1943704],"commit_path":"/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef","tag_path":"/new-group-airbute/new-ci-test-project/-/tags/fake-tag-6","assets":{"count":4,"sources":[{"format":"zip","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.zip"},{"format":"tar.gz","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.gz"},{"format":"tar.bz2","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.bz2"},{"format":"tar","url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar"}],"links":[]},"evidences":[{"sha":"a616fdca9312ca5aa451bc1060ce91a672fd24cc0f4d","filepath":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/evidences/855895.json","collected_at":"2021-03-18T12:44:12.650Z"}],"_links":{"self":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6","edit_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/edit"},"author_id":8375961,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097626659} -{"stream":"tags","data":{"name":"fake-tag-1","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627159} -{"stream":"tags","data":{"name":"fake-tag-10","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627159} -{"stream":"tags","data":{"name":"fake-tag-11","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627159} -{"stream":"tags","data":{"name":"fake-tag-12","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} -{"stream":"tags","data":{"name":"fake-tag-13","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} -{"stream":"tags","data":{"name":"fake-tag-14","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} -{"stream":"tags","data":{"name":"fake-tag-15","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} -{"stream":"tags","data":{"name":"fake-tag-16","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} -{"stream":"tags","data":{"name":"fake-tag-17","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} -{"stream":"tags","data":{"name":"fake-tag-18","message":"","target":"2831d897ba0214f8d3168647e8ad4232b83987ef","release":null,"protected":false,"commit_id":"2831d897ba0214f8d3168647e8ad4232b83987ef","project_id":25157276},"emitted_at":1671097627160} -{"stream":"pipelines","data":{"id":272632767,"iid":2,"project_id":25157276,"sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","ref":"master","status":"failed","source":"push","created_at":"2021-03-18T12:51:06.262Z","updated_at":"2021-03-18T12:51:52.007Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767"},"emitted_at":1671097627878} -{"stream":"pipelines","data":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271"},"emitted_at":1671097627879} -{"stream":"pipelines_extended","data":{"id":272632767,"iid":2,"project_id":25157276,"sha":"6ad3dd49539391774db738c9e7b7d69f2d872c98","ref":"master","status":"failed","source":"push","created_at":"2021-03-18T12:51:06.262Z","updated_at":"2021-03-18T12:51:52.007Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767","before_sha":"2831d897ba0214f8d3168647e8ad4232b83987ef","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:51:07.816Z","finished_at":"2021-03-18T12:51:52.000Z","committed_at":null,"duration":43,"queued_duration":1,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":false,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272632767","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"emitted_at":1671097628601} -{"stream":"pipelines_extended","data":{"id":272631271,"iid":1,"project_id":25157276,"sha":"028c02d96f40afe9b4d1173c1d0f712dd6d07302","ref":"ykurochkin/add-fake-CI-config","status":"failed","source":"push","created_at":"2021-03-18T12:48:49.174Z","updated_at":"2021-03-18T12:49:38.092Z","web_url":"https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271","before_sha":"0000000000000000000000000000000000000000","tag":false,"yaml_errors":null,"user":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"started_at":"2021-03-18T12:48:50.166Z","finished_at":"2021-03-18T12:49:38.084Z","committed_at":null,"duration":47,"queued_duration":null,"coverage":null,"detailed_status":{"icon":"status_failed","text":"failed","label":"failed","group":"failed","tooltip":"failed","has_details":false,"details_path":"/new-group-airbute/new-ci-test-project/-/pipelines/272631271","illustration":null,"favicon":"/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}},"emitted_at":1671097628895} -{"stream":"users","data":{"id":7904355,"username":"y.kurochkin","name":"Yevhenii Kurochkin","state":"active","avatar_url":"https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon","web_url":"https://gitlab.com/y.kurochkin"},"emitted_at":1671097629404} -{"stream":"users","data":{"id":8375961,"username":"airbyte","name":"Alexander Arhipenko","state":"active","avatar_url":"https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon","web_url":"https://gitlab.com/airbyte"},"emitted_at":1671097629405} +{"stream": "groups", "data": {"id": 11329647, "web_url": "https://gitlab.com/groups/new-group-airbute", "name": "New Group Airbute", "path": "new-group-airbute", "description": "", "visibility": "public", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute", "full_path": "new-group-airbute", "created_at": "2021-03-15T15:55:53.613Z", "parent_id": null, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941-PhosPap-Sf1UxL1g6m4", "prevent_sharing_groups_outside_hierarchy": false, "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": [{"id": 25157276, "path_with_namespace": "new-group-airbute/new-ci-test-project"}]}, "emitted_at": 1674055633585} +{"stream": "groups", "data": {"id": 61014882, "web_url": "https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg", "name": "Test Private SG", "path": "test-private-sg", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Subgroup Airbyte / Test Private SG", "full_path": "new-group-airbute/test-subgroup-airbyte/test-private-sg", "created_at": "2022-12-02T08:46:22.648Z", "parent_id": 61014863, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941bjUaJQy2zzar-JmNBjfq", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": []}, "emitted_at": 1674055634206} +{"stream": "groups", "data": {"id": 61015181, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1", "name": "Test Private SubSubG 1", "path": "test-private-subsubg-1", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Public SG / Test SG Public 2 / Test Private SubSubG 1", "full_path": "new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1", "created_at": "2022-12-02T08:54:42.252Z", "parent_id": 61014943, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941x8xQf6K-UvnnyJ-bcut4", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": [{"id": 41551658, "path_with_namespace": "new-group-airbute/test-public-sg/test-sg-public-2/test-private-subsubg-1/test_project_in_nested_subgroup"}]}, "emitted_at": 1674055634821} +{"stream": "groups", "data": {"id": 61015232, "web_url": "https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2", "name": "Test Private SubSubG 2", "path": "test-private-subsubg-2", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2", "full_path": "new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2", "created_at": "2022-12-02T08:56:21.783Z", "parent_id": 61014882, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941bnTmxzY-5zek69yJ7s4r", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": []}, "emitted_at": 1674055635329} +{"stream": "groups", "data": {"id": 61015239, "web_url": "https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3", "name": "Test Private SubSubG 3", "path": "test-private-subsubg-3", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Subgroup Airbyte / Test Private SG / Test Private SubSubG 2 / Test Private SubSubG 3", "full_path": "new-group-airbute/test-subgroup-airbyte/test-private-sg/test-private-subsubg-2/test-private-subsubg-3", "created_at": "2022-12-02T08:56:34.202Z", "parent_id": 61015232, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941fxQ648-7Mt4f2K11VUwm", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": []}, "emitted_at": 1674055635733} +{"stream": "groups", "data": {"id": 61014902, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg", "name": "Test Public SG", "path": "test-public-sg", "description": "", "visibility": "public", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Public SG", "full_path": "new-group-airbute/test-public-sg", "created_at": "2022-12-02T08:47:02.412Z", "parent_id": 11329647, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941iDo59yBXTTUMQUQztr_x", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": [{"id": 41541906, "path_with_namespace": "new-group-airbute/test-public-sg/test-public-project-1"}]}, "emitted_at": 1674055636252} +{"stream": "groups", "data": {"id": 61015202, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1", "name": "Test Public SubSubG 1", "path": "test-public-subsubg-1", "description": "", "visibility": "public", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Public SG / Test SG Public 2 / Test Public SubSubG 1", "full_path": "new-group-airbute/test-public-sg/test-sg-public-2/test-public-subsubg-1", "created_at": "2022-12-02T08:55:27.046Z", "parent_id": 61014943, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941K9JsRDnw2J5ZQxgCDr6d", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": []}, "emitted_at": 1674055636626} +{"stream": "groups", "data": {"id": 61014943, "web_url": "https://gitlab.com/groups/new-group-airbute/test-public-sg/test-sg-public-2", "name": "Test SG Public 2", "path": "test-sg-public-2", "description": "", "visibility": "public", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Public SG / Test SG Public 2", "full_path": "new-group-airbute/test-public-sg/test-sg-public-2", "created_at": "2022-12-02T08:48:04.727Z", "parent_id": 61014902, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941eGbxua89EPU8uu4snVuj", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": [{"id": 41541858, "path_with_namespace": "new-group-airbute/test-public-sg/test-sg-public-2/test-project-1"}]}, "emitted_at": 1674055637064} +{"stream": "groups", "data": {"id": 61014863, "web_url": "https://gitlab.com/groups/new-group-airbute/test-subgroup-airbyte", "name": "Test Subgroup Airbyte", "path": "test-subgroup-airbyte", "description": "", "visibility": "private", "share_with_group_lock": false, "require_two_factor_authentication": false, "two_factor_grace_period": 48, "project_creation_level": "developer", "auto_devops_enabled": null, "subgroup_creation_level": "maintainer", "emails_disabled": null, "mentions_disabled": null, "lfs_enabled": true, "default_branch_protection": 2, "avatar_url": null, "request_access_enabled": true, "full_name": "New Group Airbute / Test Subgroup Airbyte", "full_path": "new-group-airbute/test-subgroup-airbyte", "created_at": "2022-12-02T08:45:53.479Z", "parent_id": 11329647, "ldap_cn": null, "ldap_access": null, "shared_with_groups": [], "runners_token": "GR1348941yL2Jtfwss88thzmUPZv5", "shared_projects": [], "shared_runners_minutes_limit": null, "extra_shared_runners_minutes_limit": null, "prevent_forking_outside_group": null, "membership_lock": false, "projects": [{"id": 41541892, "path_with_namespace": "new-group-airbute/test-subgroup-airbyte/test-project-2"}]}, "emitted_at": 1674055637605} +{"stream": "projects", "data": {"id": 25157276, "description": "", "name": "New CI Test Project ", "name_with_namespace": "New Group Airbute / New CI Test Project ", "path": "new-ci-test-project", "path_with_namespace": "new-group-airbute/new-ci-test-project", "created_at": "2021-03-15T15:08:36.498Z", "default_branch": "master", "tag_list": [], "topics": [], "ssh_url_to_repo": "git@gitlab.com:new-group-airbute/new-ci-test-project.git", "http_url_to_repo": "https://gitlab.com/new-group-airbute/new-ci-test-project.git", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project", "readme_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/blob/master/README.md", "forks_count": 0, "avatar_url": null, "star_count": 0, "last_activity_at": "2022-12-13T09:39:47.235Z", "namespace": {"id": 11329647, "name": "New Group Airbute", "path": "new-group-airbute", "kind": "group", "full_path": "new-group-airbute", "parent_id": null, "avatar_url": null, "web_url": "https://gitlab.com/groups/new-group-airbute"}, "container_registry_image_prefix": "registry.gitlab.com/new-group-airbute/new-ci-test-project", "_links": {"self": "https://gitlab.com/api/v4/projects/25157276", "issues": "https://gitlab.com/api/v4/projects/25157276/issues", "merge_requests": "https://gitlab.com/api/v4/projects/25157276/merge_requests", "repo_branches": "https://gitlab.com/api/v4/projects/25157276/repository/branches", "labels": "https://gitlab.com/api/v4/projects/25157276/labels", "events": "https://gitlab.com/api/v4/projects/25157276/events", "members": "https://gitlab.com/api/v4/projects/25157276/members", "cluster_agents": "https://gitlab.com/api/v4/projects/25157276/cluster_agents"}, "packages_enabled": true, "empty_repo": false, "archived": false, "visibility": "private", "resolve_outdated_diff_discussions": false, "container_expiration_policy": {"cadence": "1d", "enabled": false, "keep_n": 10, "older_than": "90d", "name_regex": ".*", "name_regex_keep": null, "next_run_at": "2021-03-16T15:08:36.518Z"}, "issues_enabled": true, "merge_requests_enabled": true, "wiki_enabled": true, "jobs_enabled": true, "snippets_enabled": true, "container_registry_enabled": true, "service_desk_enabled": true, "service_desk_address": "contact-project+new-group-airbute-new-ci-test-project-25157276-issue-@incoming.gitlab.com", "can_create_merge_request_in": true, "issues_access_level": "enabled", "repository_access_level": "enabled", "merge_requests_access_level": "enabled", "forking_access_level": "enabled", "wiki_access_level": "enabled", "builds_access_level": "enabled", "snippets_access_level": "enabled", "pages_access_level": "private", "operations_access_level": "enabled", "analytics_access_level": "enabled", "container_registry_access_level": "enabled", "security_and_compliance_access_level": "private", "releases_access_level": "enabled", "environments_access_level": "enabled", "feature_flags_access_level": "enabled", "infrastructure_access_level": "enabled", "monitor_access_level": "enabled", "emails_disabled": null, "shared_runners_enabled": true, "lfs_enabled": true, "creator_id": 8375961, "import_url": null, "import_type": null, "import_status": "none", "import_error": null, "open_issues_count": 31, "runners_token": "GR1348941eMJgWDU69xyyshaNsaTZ", "ci_default_git_depth": 50, "ci_forward_deployment_enabled": true, "ci_job_token_scope_enabled": false, "ci_separated_caches": true, "ci_opt_in_jwt": false, "ci_allow_fork_pipelines_to_run_in_parent_project": true, "public_jobs": true, "build_git_strategy": "fetch", "build_timeout": 3600, "auto_cancel_pending_pipelines": "enabled", "ci_config_path": "", "shared_with_groups": [], "only_allow_merge_if_pipeline_succeeds": false, "allow_merge_on_skipped_pipeline": null, "restrict_user_defined_variables": false, "request_access_enabled": true, "only_allow_merge_if_all_discussions_are_resolved": false, "remove_source_branch_after_merge": true, "printing_merge_request_link_enabled": true, "merge_method": "merge", "squash_option": "default_off", "enforce_auth_checks_on_uploads": true, "suggestion_commit_message": null, "merge_commit_template": null, "squash_commit_template": null, "issue_branch_template": null, "statistics": {"commit_count": 3, "storage_size": 291925, "repository_size": 283115, "wiki_size": 0, "lfs_objects_size": 0, "job_artifacts_size": 8810, "pipeline_artifacts_size": 0, "packages_size": 0, "snippets_size": 0, "uploads_size": 0}, "auto_devops_enabled": false, "auto_devops_deploy_strategy": "continuous", "autoclose_referenced_issues": true, "keep_latest_artifact": true, "runner_token_expiration_interval": null, "external_authorization_classification_label": "", "requirements_enabled": false, "requirements_access_level": "enabled", "security_and_compliance_enabled": true, "compliance_frameworks": [], "permissions": {"project_access": {"access_level": 40, "notification_level": 3}, "group_access": {"access_level": 50, "notification_level": 3}}}, "emitted_at": 1674055638197} +{"stream": "branches", "data": {"name": "31-fake-issue-30", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/31-fake-issue-30", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055638810} +{"stream": "branches", "data": {"name": "master", "merged": false, "protected": true, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": true, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/master", "commit_id": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "project_id": 25157276}, "emitted_at": 1674055638811} +{"stream": "branches", "data": {"name": "new-test-branch", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055638812} +{"stream": "branches", "data": {"name": "new-test-branch-1", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-1", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055638812} +{"stream": "branches", "data": {"name": "new-test-branch-10", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-10", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055638813} +{"stream": "branches", "data": {"name": "new-test-branch-11", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-11", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055638814} +{"stream": "branches", "data": {"name": "new-test-branch-12", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-12", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055638814} +{"stream": "branches", "data": {"name": "new-test-branch-13", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-13", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055638815} +{"stream": "branches", "data": {"name": "new-test-branch-14", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-14", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055638815} +{"stream": "branches", "data": {"name": "new-test-branch-15", "merged": true, "protected": false, "developers_can_push": false, "developers_can_merge": false, "can_push": true, "default": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/tree/new-test-branch-15", "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055638816} +{"stream": "commits", "data": {"id": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "short_id": "6ad3dd49", "created_at": "2021-03-18T12:51:05.000+00:00", "parent_ids": ["2831d897ba0214f8d3168647e8ad4232b83987ef", "028c02d96f40afe9b4d1173c1d0f712dd6d07302"], "title": "Merge branch 'ykurochkin/add-fake-CI-config' into 'master'", "message": "Merge branch 'ykurochkin/add-fake-CI-config' into 'master'\n\nadd fake CI config\n\nSee merge request new-group-airbute/new-ci-test-project!3", "author_name": "Alexander Arhipenko", "author_email": "integration-test@airbyte.io", "authored_date": "2021-03-18T12:51:05.000+00:00", "committer_name": "Alexander Arhipenko", "committer_email": "integration-test@airbyte.io", "committed_date": "2021-03-18T12:51:05.000+00:00", "trailers": {}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/6ad3dd49539391774db738c9e7b7d69f2d872c98", "stats": {"additions": 14, "deletions": 0, "total": 14}, "project_id": 25157276}, "emitted_at": 1674055640264} +{"stream": "commits", "data": {"id": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "short_id": "028c02d9", "created_at": "2021-03-18T14:48:41.000+02:00", "parent_ids": ["2831d897ba0214f8d3168647e8ad4232b83987ef"], "title": "add fake CI config", "message": "add fake CI config\n", "author_name": "ykurochkin", "author_email": "zhenia.kurochkin@gmail.com", "authored_date": "2021-03-18T14:48:41.000+02:00", "committer_name": "ykurochkin", "committer_email": "zhenia.kurochkin@gmail.com", "committed_date": "2021-03-18T14:48:41.000+02:00", "trailers": {}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/028c02d96f40afe9b4d1173c1d0f712dd6d07302", "stats": {"additions": 14, "deletions": 0, "total": 14}, "project_id": 25157276}, "emitted_at": 1674055640265} +{"stream": "commits", "data": {"id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "short_id": "2831d897", "created_at": "2021-03-15T15:08:36.000+00:00", "parent_ids": [], "title": "Initial commit", "message": "Initial commit", "author_name": "Alexander Arhipenko", "author_email": "integration-test@airbyte.io", "authored_date": "2021-03-15T15:08:36.000+00:00", "committer_name": "Alexander Arhipenko", "committer_email": "integration-test@airbyte.io", "committed_date": "2021-03-15T15:08:36.000+00:00", "trailers": {}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef", "stats": {"additions": 2, "deletions": 0, "total": 2}, "project_id": 25157276}, "emitted_at": 1674055640266} +{"stream": "group_issue_boards", "data": {"id": 5099065, "name": "Development", "hide_backlog_list": false, "hide_closed_list": false, "project": null, "lists": [], "group": {"id": 11329647, "web_url": "https://gitlab.com/groups/new-group-airbute", "name": "New Group Airbute"}, "group_id": 11329647}, "emitted_at": 1674055640946} +{"stream": "issues", "data": {"id": 80943819, "iid": 32, "project_id": 25157276, "title": "Fake Issue 31", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:42.206Z", "updated_at": "2021-03-15T15:22:42.206Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/32", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/32", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/32/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/32/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#32", "relative": "#32", "full": "new-group-airbute/new-ci-test-project#32"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055644946} +{"stream": "issues", "data": {"id": 80943818, "iid": 31, "project_id": 25157276, "title": "Fake Issue 30", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:41.337Z", "updated_at": "2021-03-15T16:08:06.041Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 1, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/31", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/31", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/31/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/31/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#31", "relative": "#31", "full": "new-group-airbute/new-ci-test-project#31"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055644947} +{"stream": "issues", "data": {"id": 80943817, "iid": 30, "project_id": 25157276, "title": "Fake Issue 29", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:40.529Z", "updated_at": "2021-03-15T15:22:40.529Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/30", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/30", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/30/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/30/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#30", "relative": "#30", "full": "new-group-airbute/new-ci-test-project#30"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055644947} +{"stream": "issues", "data": {"id": 80943816, "iid": 29, "project_id": 25157276, "title": "Fake Issue 28", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:39.860Z", "updated_at": "2021-03-15T15:22:39.860Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/29", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/29", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/29/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/29/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#29", "relative": "#29", "full": "new-group-airbute/new-ci-test-project#29"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055644947} +{"stream": "issues", "data": {"id": 80943815, "iid": 28, "project_id": 25157276, "title": "Fake Issue 27", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:39.204Z", "updated_at": "2021-03-15T15:22:39.204Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/28", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/28", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/28/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/28/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#28", "relative": "#28", "full": "new-group-airbute/new-ci-test-project#28"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055644948} +{"stream": "issues", "data": {"id": 80943813, "iid": 27, "project_id": 25157276, "title": "Fake Issue 26", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:38.528Z", "updated_at": "2021-03-15T15:22:38.528Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/27", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/27", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/27/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/27/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#27", "relative": "#27", "full": "new-group-airbute/new-ci-test-project#27"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055644948} +{"stream": "issues", "data": {"id": 80943812, "iid": 26, "project_id": 25157276, "title": "Fake Issue 25", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:37.864Z", "updated_at": "2021-03-15T15:22:37.864Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/26", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/26", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/26/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/26/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#26", "relative": "#26", "full": "new-group-airbute/new-ci-test-project#26"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055644948} +{"stream": "issues", "data": {"id": 80943811, "iid": 25, "project_id": 25157276, "title": "Fake Issue 24", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:37.282Z", "updated_at": "2021-03-15T15:22:37.282Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/25", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/25", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/25/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/25/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#25", "relative": "#25", "full": "new-group-airbute/new-ci-test-project#25"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055644949} +{"stream": "issues", "data": {"id": 80943809, "iid": 24, "project_id": 25157276, "title": "Fake Issue 23", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:36.708Z", "updated_at": "2021-03-15T15:22:36.708Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/24", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/24", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/24/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/24/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#24", "relative": "#24", "full": "new-group-airbute/new-ci-test-project#24"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055644949} +{"stream": "issues", "data": {"id": 80943805, "iid": 23, "project_id": 25157276, "title": "Fake Issue 22", "description": null, "state": "opened", "created_at": "2021-03-15T15:22:36.131Z", "updated_at": "2021-03-15T15:22:36.131Z", "closed_at": null, "labels": ["bug"], "assignees": [], "type": "ISSUE", "user_notes_count": 0, "merge_requests_count": 0, "upvotes": 0, "downvotes": 0, "due_date": null, "confidential": false, "discussion_locked": null, "issue_type": "issue", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/issues/23", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "task_completion_status": {"count": 0, "completed_count": 0}, "blocking_issues_count": 0, "has_tasks": false, "_links": {"self": "https://gitlab.com/api/v4/projects/25157276/issues/23", "notes": "https://gitlab.com/api/v4/projects/25157276/issues/23/notes", "award_emoji": "https://gitlab.com/api/v4/projects/25157276/issues/23/award_emoji", "project": "https://gitlab.com/api/v4/projects/25157276", "closed_as_duplicate_of": null}, "references": {"short": "#23", "relative": "#23", "full": "new-group-airbute/new-ci-test-project#23"}, "severity": "UNKNOWN", "moved_to_id": null, "service_desk_reply_to": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null}, "emitted_at": 1674055644949} +{"stream": "jobs", "data": {"id": 1108959782, "status": "failed", "stage": "test", "name": "test-code-job2", "ref": "master", "tag": false, "coverage": null, "allow_failure": false, "created_at": "2021-03-18T12:51:06.294Z", "started_at": "2021-03-18T12:51:07.646Z", "finished_at": "2021-03-18T12:51:51.309Z", "duration": 43.662407, "queued_duration": 1.180926, "failure_reason": "script_failure", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959782", "project": {"ci_job_token_scope_enabled": false}, "artifacts": [{"file_type": "trace", "size": 2200, "filename": "job.log", "file_format": null}], "artifacts_expire_at": null, "tag_list": [], "user_id": 8375961, "pipeline_id": 272632767, "runner_id": 380986, "commit_id": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "project_id": 25157276}, "emitted_at": 1674055646272} +{"stream": "jobs", "data": {"id": 1108959779, "status": "failed", "stage": "test", "name": "test-code-job1", "ref": "master", "tag": false, "coverage": null, "allow_failure": false, "created_at": "2021-03-18T12:51:06.279Z", "started_at": "2021-03-18T12:51:07.943Z", "finished_at": "2021-03-18T12:51:50.943Z", "duration": 42.999853, "queued_duration": 1.349274, "failure_reason": "script_failure", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108959779", "project": {"ci_job_token_scope_enabled": false}, "artifacts": [{"file_type": "trace", "size": 2182, "filename": "job.log", "file_format": null}], "artifacts_expire_at": null, "tag_list": [], "user_id": 8375961, "pipeline_id": 272632767, "runner_id": 380987, "commit_id": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "project_id": 25157276}, "emitted_at": 1674055646273} +{"stream": "jobs", "data": {"id": 1108952832, "status": "failed", "stage": "test", "name": "test-code-job2", "ref": "ykurochkin/add-fake-CI-config", "tag": false, "coverage": null, "allow_failure": false, "created_at": "2021-03-18T12:48:49.222Z", "started_at": "2021-03-18T12:48:50.732Z", "finished_at": "2021-03-18T12:49:37.961Z", "duration": 47.229034, "queued_duration": 1.422541, "failure_reason": "script_failure", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952832", "project": {"ci_job_token_scope_enabled": false}, "artifacts": [{"file_type": "trace", "size": 2223, "filename": "job.log", "file_format": null}], "artifacts_expire_at": null, "tag_list": [], "user_id": 8375961, "pipeline_id": 272631271, "runner_id": 44949, "commit_id": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "project_id": 25157276}, "emitted_at": 1674055646676} +{"stream": "jobs", "data": {"id": 1108952831, "status": "failed", "stage": "test", "name": "test-code-job1", "ref": "ykurochkin/add-fake-CI-config", "tag": false, "coverage": null, "allow_failure": false, "created_at": "2021-03-18T12:48:49.199Z", "started_at": "2021-03-18T12:48:50.064Z", "finished_at": "2021-03-18T12:49:34.277Z", "duration": 44.212296, "queued_duration": 0.735172, "failure_reason": "script_failure", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/jobs/1108952831", "project": {"ci_job_token_scope_enabled": false}, "artifacts": [{"file_type": "trace", "size": 2205, "filename": "job.log", "file_format": null}], "artifacts_expire_at": null, "tag_list": [], "user_id": 8375961, "pipeline_id": 272631271, "runner_id": 380987, "commit_id": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "project_id": 25157276}, "emitted_at": 1674055646677} +{"stream": "project_milestones", "data": {"id": 1943705, "iid": 51, "project_id": 25157276, "title": "Project Milestone 51", "description": null, "state": "active", "created_at": "2021-03-15T15:33:16.915Z", "updated_at": "2021-03-15T15:33:16.915Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/51"}, "emitted_at": 1674055647267} +{"stream": "project_milestones", "data": {"id": 1943704, "iid": 50, "project_id": 25157276, "title": "Project Milestone 50", "description": null, "state": "active", "created_at": "2021-03-15T15:33:16.329Z", "updated_at": "2021-03-15T15:33:16.329Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/50"}, "emitted_at": 1674055647268} +{"stream": "project_milestones", "data": {"id": 1943703, "iid": 49, "project_id": 25157276, "title": "Project Milestone 49", "description": null, "state": "active", "created_at": "2021-03-15T15:33:15.960Z", "updated_at": "2021-03-15T15:33:15.960Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/49"}, "emitted_at": 1674055647268} +{"stream": "project_milestones", "data": {"id": 1943702, "iid": 48, "project_id": 25157276, "title": "Project Milestone 48", "description": null, "state": "active", "created_at": "2021-03-15T15:33:15.604Z", "updated_at": "2021-03-15T15:33:15.604Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/48"}, "emitted_at": 1674055647269} +{"stream": "project_milestones", "data": {"id": 1943701, "iid": 47, "project_id": 25157276, "title": "Project Milestone 47", "description": null, "state": "active", "created_at": "2021-03-15T15:33:15.232Z", "updated_at": "2021-03-15T15:33:15.232Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/47"}, "emitted_at": 1674055647270} +{"stream": "project_milestones", "data": {"id": 1943700, "iid": 46, "project_id": 25157276, "title": "Project Milestone 46", "description": null, "state": "active", "created_at": "2021-03-15T15:33:14.860Z", "updated_at": "2021-03-15T15:33:14.860Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/46"}, "emitted_at": 1674055647270} +{"stream": "project_milestones", "data": {"id": 1943699, "iid": 45, "project_id": 25157276, "title": "Project Milestone 45", "description": null, "state": "active", "created_at": "2021-03-15T15:33:14.450Z", "updated_at": "2021-03-15T15:33:14.450Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/45"}, "emitted_at": 1674055647271} +{"stream": "project_milestones", "data": {"id": 1943698, "iid": 44, "project_id": 25157276, "title": "Project Milestone 44", "description": null, "state": "active", "created_at": "2021-03-15T15:33:14.042Z", "updated_at": "2021-03-15T15:33:14.042Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/44"}, "emitted_at": 1674055647271} +{"stream": "project_milestones", "data": {"id": 1943697, "iid": 43, "project_id": 25157276, "title": "Project Milestone 43", "description": null, "state": "active", "created_at": "2021-03-15T15:33:13.668Z", "updated_at": "2021-03-15T15:33:13.668Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/43"}, "emitted_at": 1674055647272} +{"stream": "project_milestones", "data": {"id": 1943696, "iid": 42, "project_id": 25157276, "title": "Project Milestone 42", "description": null, "state": "active", "created_at": "2021-03-15T15:33:13.240Z", "updated_at": "2021-03-15T15:33:13.240Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/milestones/42"}, "emitted_at": 1674055647273} +{"stream": "group_milestones", "data": {"id": 1943775, "iid": 21, "group_id": 11329647, "title": "Group Milestone 21", "description": null, "state": "active", "created_at": "2021-03-15T16:01:02.125Z", "updated_at": "2021-03-15T16:01:02.125Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/21"}, "emitted_at": 1674055648934} +{"stream": "group_milestones", "data": {"id": 1943774, "iid": 20, "group_id": 11329647, "title": "Group Milestone 20", "description": null, "state": "active", "created_at": "2021-03-15T16:01:01.682Z", "updated_at": "2021-03-15T16:01:01.682Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/20"}, "emitted_at": 1674055648934} +{"stream": "group_milestones", "data": {"id": 1943773, "iid": 19, "group_id": 11329647, "title": "Group Milestone 19", "description": null, "state": "active", "created_at": "2021-03-15T16:01:01.067Z", "updated_at": "2021-03-15T16:01:01.067Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/19"}, "emitted_at": 1674055648935} +{"stream": "group_milestones", "data": {"id": 1943772, "iid": 18, "group_id": 11329647, "title": "Group Milestone 18", "description": null, "state": "active", "created_at": "2021-03-15T16:01:00.572Z", "updated_at": "2021-03-15T16:01:00.572Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/18"}, "emitted_at": 1674055648935} +{"stream": "group_milestones", "data": {"id": 1943771, "iid": 17, "group_id": 11329647, "title": "Group Milestone 17", "description": null, "state": "active", "created_at": "2021-03-15T16:01:00.136Z", "updated_at": "2021-03-15T16:01:00.136Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/17"}, "emitted_at": 1674055648935} +{"stream": "group_milestones", "data": {"id": 1943770, "iid": 16, "group_id": 11329647, "title": "Group Milestone 16", "description": null, "state": "active", "created_at": "2021-03-15T16:00:59.507Z", "updated_at": "2021-03-15T16:00:59.507Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/16"}, "emitted_at": 1674055648935} +{"stream": "group_milestones", "data": {"id": 1943769, "iid": 15, "group_id": 11329647, "title": "Group Milestone 15", "description": null, "state": "active", "created_at": "2021-03-15T16:00:59.133Z", "updated_at": "2021-03-15T16:00:59.133Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/15"}, "emitted_at": 1674055648935} +{"stream": "group_milestones", "data": {"id": 1943768, "iid": 14, "group_id": 11329647, "title": "Group Milestone 14", "description": null, "state": "active", "created_at": "2021-03-15T16:00:58.763Z", "updated_at": "2021-03-15T16:00:58.763Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/14"}, "emitted_at": 1674055648935} +{"stream": "group_milestones", "data": {"id": 1943767, "iid": 13, "group_id": 11329647, "title": "Group Milestone 13", "description": null, "state": "active", "created_at": "2021-03-15T16:00:58.315Z", "updated_at": "2021-03-15T16:00:58.315Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/13"}, "emitted_at": 1674055648935} +{"stream": "group_milestones", "data": {"id": 1943766, "iid": 12, "group_id": 11329647, "title": "Group Milestone 12", "description": null, "state": "active", "created_at": "2021-03-15T16:00:57.929Z", "updated_at": "2021-03-15T16:00:57.929Z", "due_date": null, "start_date": null, "expired": false, "web_url": "https://gitlab.com/groups/new-group-airbute/-/milestones/12"}, "emitted_at": 1674055648935} +{"stream": "project_members", "data": {"access_level": 40, "created_at": "2021-03-15T15:08:36.746Z", "created_by": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "project_id": 25157276}, "emitted_at": 1674055652666} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2021-03-15T15:55:53.658Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 11329647}, "emitted_at": 1674055653132} +{"stream": "group_members", "data": {"access_level": 30, "created_at": "2021-03-15T15:55:53.998Z", "created_by": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "expires_at": null, "id": 7904355, "username": "y.kurochkin", "name": "Yevhenii Kurochkin", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon", "web_url": "https://gitlab.com/y.kurochkin", "membership_state": "active", "group_id": 11329647}, "emitted_at": 1674055653133} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:46:22.834Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61014882}, "emitted_at": 1674055653538} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:54:42.303Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61015181}, "emitted_at": 1674055654050} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:56:21.862Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61015232}, "emitted_at": 1674055654459} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:56:34.266Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61015239}, "emitted_at": 1674055654768} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:47:02.469Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61014902}, "emitted_at": 1674055655381} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:55:27.120Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61015202}, "emitted_at": 1674055655789} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:48:04.786Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61014943}, "emitted_at": 1674055656200} +{"stream": "group_members", "data": {"access_level": 50, "created_at": "2022-12-02T08:45:53.544Z", "expires_at": null, "id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte", "membership_state": "active", "group_id": 61014863}, "emitted_at": 1674055656610} +{"stream": "project_labels", "data": {"id": 19116944, "name": "Label 1", "description": null, "description_html": "", "text_color": "#333333", "color": "#ffff00", "subscribed": false, "priority": null, "is_project_label": true, "project_id": 25157276}, "emitted_at": 1674055657501} +{"stream": "project_labels", "data": {"id": 19117004, "name": "Label 1", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#008000", "subscribed": false, "priority": null, "is_project_label": false, "project_id": 25157276}, "emitted_at": 1674055657501} +{"stream": "project_labels", "data": {"id": 19116954, "name": "Label 10", "description": null, "description_html": "", "text_color": "#333333", "color": "#ff00ff", "subscribed": false, "priority": null, "is_project_label": true, "project_id": 25157276}, "emitted_at": 1674055657502} +{"stream": "project_labels", "data": {"id": 19117017, "name": "Label 10", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000080", "subscribed": false, "priority": null, "is_project_label": false, "project_id": 25157276}, "emitted_at": 1674055657502} +{"stream": "project_labels", "data": {"id": 19116955, "name": "Label 11", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#808000", "subscribed": false, "priority": null, "is_project_label": true, "project_id": 25157276}, "emitted_at": 1674055657502} +{"stream": "project_labels", "data": {"id": 19117018, "name": "Label 11", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#808080", "subscribed": false, "priority": null, "is_project_label": false, "project_id": 25157276}, "emitted_at": 1674055657502} +{"stream": "project_labels", "data": {"id": 19116956, "name": "Label 12", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#ff0000", "subscribed": false, "priority": null, "is_project_label": true, "project_id": 25157276}, "emitted_at": 1674055657502} +{"stream": "project_labels", "data": {"id": 19117019, "name": "Label 12", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000000", "subscribed": false, "priority": null, "is_project_label": false, "project_id": 25157276}, "emitted_at": 1674055657502} +{"stream": "project_labels", "data": {"id": 19117020, "name": "Label 13", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000000", "subscribed": false, "priority": null, "is_project_label": false, "project_id": 25157276}, "emitted_at": 1674055657502} +{"stream": "project_labels", "data": {"id": 19116957, "name": "Label 13", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#808000", "subscribed": false, "priority": null, "is_project_label": true, "project_id": 25157276}, "emitted_at": 1674055657502} +{"stream": "group_labels", "data": {"id": 19117004, "name": "Label 1", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#008000", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055659253} +{"stream": "group_labels", "data": {"id": 19117017, "name": "Label 10", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000080", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055659254} +{"stream": "group_labels", "data": {"id": 19117018, "name": "Label 11", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#808080", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055659255} +{"stream": "group_labels", "data": {"id": 19117019, "name": "Label 12", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000000", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055659255} +{"stream": "group_labels", "data": {"id": 19117020, "name": "Label 13", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#000000", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055659256} +{"stream": "group_labels", "data": {"id": 19117021, "name": "Label 14", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#808080", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055659256} +{"stream": "group_labels", "data": {"id": 19117022, "name": "Label 15", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#0000ff", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055659257} +{"stream": "group_labels", "data": {"id": 19117023, "name": "Label 16", "description": null, "description_html": "", "text_color": "#333333", "color": "#ffffff", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055659257} +{"stream": "group_labels", "data": {"id": 19117024, "name": "Label 17", "description": null, "description_html": "", "text_color": "#FFFFFF", "color": "#008000", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055659258} +{"stream": "group_labels", "data": {"id": 19117025, "name": "Label 18", "description": null, "description_html": "", "text_color": "#333333", "color": "#ffffff", "subscribed": false, "group_id": 11329647}, "emitted_at": 1674055659258} +{"stream": "merge_requests", "data": {"id": 92594931, "iid": 3, "project_id": 25157276, "title": "add fake CI config", "description": "", "state": "merged", "created_at": "2021-03-18T12:49:13.091Z", "updated_at": "2021-03-18T12:51:06.319Z", "merge_user": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "merged_at": "2021-03-18T12:51:06.470Z", "closed_at": null, "target_branch": "master", "source_branch": "ykurochkin/add-fake-CI-config", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": [], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "not_open", "sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "merge_commit_sha": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!3", "references": {"short": "!3", "relative": "!3", "full": "new-group-airbute/new-ci-test-project!3"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": 8375961}, "emitted_at": 1674055668186} +{"stream": "merge_requests", "data": {"id": 92593913, "iid": 2, "project_id": 25157276, "title": "update readme.md", "description": "", "state": "opened", "created_at": "2021-03-18T12:42:30.200Z", "updated_at": "2021-03-18T12:42:30.200Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "ykurochkin/test-branch", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "assignees": [], "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": [], "draft": false, "work_in_progress": false, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!2", "references": {"short": "!2", "relative": "!2", "full": "new-group-airbute/new-ci-test-project!2"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": null, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055668188} +{"stream": "merge_requests", "data": {"id": 92111504, "iid": 1, "project_id": 25157276, "title": "Draft: Resolve \"Fake Issue 30\"", "description": "Closes #31", "state": "opened", "created_at": "2021-03-15T16:08:05.071Z", "updated_at": "2021-03-15T16:08:05.071Z", "merge_user": null, "merged_at": null, "closed_at": null, "target_branch": "master", "source_branch": "31-fake-issue-30", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "assignees": [8375961], "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": ["bug"], "draft": true, "work_in_progress": true, "merge_when_pipeline_succeeds": false, "merge_status": "cannot_be_merged", "detailed_merge_status": "draft_status", "sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!1", "references": {"short": "!1", "relative": "!1", "full": "new-group-airbute/new-ci-test-project!1"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": true, "blocking_discussions_resolved": true, "approvals_before_merge": null, "author_id": 8375961, "assignee_id": 8375961, "closed_by_id": null, "milestone_id": null, "merged_by_id": null}, "emitted_at": 1674055668189} +{"stream": "merge_request_commits", "data": {"id": 92594931, "iid": 3, "project_id": 25157276, "title": "add fake CI config", "description": "", "state": "merged", "created_at": "2021-03-18T12:49:13.091Z", "updated_at": "2021-03-18T12:51:06.319Z", "merged_by": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "merge_user": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "merged_at": "2021-03-18T12:51:06.470Z", "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "ykurochkin/add-fake-CI-config", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": [], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "not_open", "sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "merge_commit_sha": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!3", "references": {"short": "!3", "relative": "!3", "full": "new-group-airbute/new-ci-test-project!3"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/3", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "1", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": {"id": 272631271, "iid": 1, "project_id": 25157276, "sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "ref": "ykurochkin/add-fake-CI-config", "status": "failed", "source": "push", "created_at": "2021-03-18T12:48:49.174Z", "updated_at": "2021-03-18T12:49:38.092Z", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271", "before_sha": "0000000000000000000000000000000000000000", "tag": false, "yaml_errors": null, "user": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "started_at": "2021-03-18T12:48:50.166Z", "finished_at": "2021-03-18T12:49:38.084Z", "committed_at": null, "duration": 47, "queued_duration": null, "coverage": null, "detailed_status": {"icon": "status_failed", "text": "failed", "label": "failed", "group": "failed", "tooltip": "failed", "has_details": true, "details_path": "/new-group-airbute/new-ci-test-project/-/pipelines/272631271", "illustration": null, "favicon": "/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}}, "diff_refs": {"base_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "head_sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "start_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 3}, "emitted_at": 1674055669212} +{"stream": "merge_request_commits", "data": {"id": 92593913, "iid": 2, "project_id": 25157276, "title": "update readme.md", "description": "", "state": "opened", "created_at": "2021-03-18T12:42:30.200Z", "updated_at": "2021-03-18T12:42:30.200Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "ykurochkin/test-branch", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [], "assignee": null, "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": [], "draft": false, "work_in_progress": false, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "can_be_merged", "detailed_merge_status": "mergeable", "sha": "9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!2", "references": {"short": "!2", "relative": "!2", "full": "new-group-airbute/new-ci-test-project!2"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/2", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": false, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": "1", "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "head_sha": "9b0c5cf345f0ca1a3fb3ae253e74e0616abf8129", "start_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 2}, "emitted_at": 1674055669621} +{"stream": "merge_request_commits", "data": {"id": 92111504, "iid": 1, "project_id": 25157276, "title": "Draft: Resolve \"Fake Issue 30\"", "description": "Closes #31", "state": "opened", "created_at": "2021-03-15T16:08:05.071Z", "updated_at": "2021-03-15T16:08:05.071Z", "merged_by": null, "merge_user": null, "merged_at": null, "closed_by": null, "closed_at": null, "target_branch": "master", "source_branch": "31-fake-issue-30", "user_notes_count": 0, "upvotes": 0, "downvotes": 0, "author": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "assignees": [{"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}], "assignee": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "reviewers": [], "source_project_id": 25157276, "target_project_id": 25157276, "labels": ["bug"], "draft": true, "work_in_progress": true, "milestone": null, "merge_when_pipeline_succeeds": false, "merge_status": "cannot_be_merged", "detailed_merge_status": "draft_status", "sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "merge_commit_sha": null, "squash_commit_sha": null, "discussion_locked": null, "should_remove_source_branch": null, "force_remove_source_branch": true, "reference": "!1", "references": {"short": "!1", "relative": "!1", "full": "new-group-airbute/new-ci-test-project!1"}, "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/merge_requests/1", "time_stats": {"time_estimate": 0, "total_time_spent": 0, "human_time_estimate": null, "human_total_time_spent": null}, "squash": false, "task_completion_status": {"count": 0, "completed_count": 0}, "has_conflicts": true, "blocking_discussions_resolved": true, "approvals_before_merge": null, "subscribed": true, "changes_count": null, "latest_build_started_at": null, "latest_build_finished_at": null, "first_deployed_to_production_at": null, "pipeline": null, "head_pipeline": null, "diff_refs": {"base_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "head_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "start_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef"}, "merge_error": null, "first_contribution": false, "user": {"can_merge": true}, "merge_request_iid": 1}, "emitted_at": 1674055669988} +{"stream": "releases", "data": {"name": "First release", "tag_name": "fake-tag-6", "description": "Test Release", "created_at": "2021-03-18T12:44:12.497Z", "released_at": "2021-03-18T12:44:12.497Z", "upcoming_release": false, "milestones": [1943704], "commit_path": "/new-group-airbute/new-ci-test-project/-/commit/2831d897ba0214f8d3168647e8ad4232b83987ef", "tag_path": "/new-group-airbute/new-ci-test-project/-/tags/fake-tag-6", "assets": {"count": 4, "sources": [{"format": "zip", "url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.zip"}, {"format": "tar.gz", "url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.gz"}, {"format": "tar.bz2", "url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar.bz2"}, {"format": "tar", "url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/archive/fake-tag-6/new-ci-test-project-fake-tag-6.tar"}], "links": []}, "evidences": [{"sha": "a616fdca9312ca5aa451bc1060ce91a672fd24cc0f4d", "filepath": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/evidences/855895.json", "collected_at": "2021-03-18T12:44:12.650Z"}], "_links": {"self": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6", "edit_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/releases/fake-tag-6/edit"}, "author_id": 8375961, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055670493} +{"stream": "tags", "data": {"name": "fake-tag-1", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055671066} +{"stream": "tags", "data": {"name": "fake-tag-10", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055671066} +{"stream": "tags", "data": {"name": "fake-tag-11", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055671067} +{"stream": "tags", "data": {"name": "fake-tag-12", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055671068} +{"stream": "tags", "data": {"name": "fake-tag-13", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055671068} +{"stream": "tags", "data": {"name": "fake-tag-14", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055671069} +{"stream": "tags", "data": {"name": "fake-tag-15", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055671069} +{"stream": "tags", "data": {"name": "fake-tag-16", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055671070} +{"stream": "tags", "data": {"name": "fake-tag-17", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055671070} +{"stream": "tags", "data": {"name": "fake-tag-18", "message": "", "target": "2831d897ba0214f8d3168647e8ad4232b83987ef", "release": null, "protected": false, "commit_id": "2831d897ba0214f8d3168647e8ad4232b83987ef", "project_id": 25157276}, "emitted_at": 1674055671070} +{"stream": "pipelines", "data": {"id": 272632767, "iid": 2, "project_id": 25157276, "sha": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "ref": "master", "status": "failed", "source": "push", "created_at": "2021-03-18T12:51:06.262Z", "updated_at": "2021-03-18T12:51:52.007Z", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767"}, "emitted_at": 1674055671865} +{"stream": "pipelines", "data": {"id": 272631271, "iid": 1, "project_id": 25157276, "sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "ref": "ykurochkin/add-fake-CI-config", "status": "failed", "source": "push", "created_at": "2021-03-18T12:48:49.174Z", "updated_at": "2021-03-18T12:49:38.092Z", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271"}, "emitted_at": 1674055671866} +{"stream": "pipelines_extended", "data": {"id": 272632767, "iid": 2, "project_id": 25157276, "sha": "6ad3dd49539391774db738c9e7b7d69f2d872c98", "ref": "master", "status": "failed", "source": "push", "created_at": "2021-03-18T12:51:06.262Z", "updated_at": "2021-03-18T12:51:52.007Z", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272632767", "before_sha": "2831d897ba0214f8d3168647e8ad4232b83987ef", "tag": false, "yaml_errors": null, "user": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "started_at": "2021-03-18T12:51:07.816Z", "finished_at": "2021-03-18T12:51:52.000Z", "committed_at": null, "duration": 43, "queued_duration": 1, "coverage": null, "detailed_status": {"icon": "status_failed", "text": "failed", "label": "failed", "group": "failed", "tooltip": "failed", "has_details": false, "details_path": "/new-group-airbute/new-ci-test-project/-/pipelines/272632767", "illustration": null, "favicon": "/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}}, "emitted_at": 1674055672683} +{"stream": "pipelines_extended", "data": {"id": 272631271, "iid": 1, "project_id": 25157276, "sha": "028c02d96f40afe9b4d1173c1d0f712dd6d07302", "ref": "ykurochkin/add-fake-CI-config", "status": "failed", "source": "push", "created_at": "2021-03-18T12:48:49.174Z", "updated_at": "2021-03-18T12:49:38.092Z", "web_url": "https://gitlab.com/new-group-airbute/new-ci-test-project/-/pipelines/272631271", "before_sha": "0000000000000000000000000000000000000000", "tag": false, "yaml_errors": null, "user": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "started_at": "2021-03-18T12:48:50.166Z", "finished_at": "2021-03-18T12:49:38.084Z", "committed_at": null, "duration": 47, "queued_duration": null, "coverage": null, "detailed_status": {"icon": "status_failed", "text": "failed", "label": "failed", "group": "failed", "tooltip": "failed", "has_details": false, "details_path": "/new-group-airbute/new-ci-test-project/-/pipelines/272631271", "illustration": null, "favicon": "/assets/ci_favicons/favicon_status_failed-41304d7f7e3828808b0c26771f0309e55296819a9beea3ea9fbf6689d9857c12.png"}}, "emitted_at": 1674055673094} +{"stream": "users", "data": {"id": 7904355, "username": "y.kurochkin", "name": "Yevhenii Kurochkin", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/760fcac88680c724a6b19c6bfd5b6718?s=80&d=identicon", "web_url": "https://gitlab.com/y.kurochkin"}, "emitted_at": 1674055673713} +{"stream": "users", "data": {"id": 8375961, "username": "airbyte", "name": "Airbyte Team", "state": "active", "avatar_url": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?s=80&d=identicon", "web_url": "https://gitlab.com/airbyte"}, "emitted_at": 1674055673713} diff --git a/airbyte-integrations/connectors/source-gitlab/integration_tests/invalid_config.json b/airbyte-integrations/connectors/source-gitlab/integration_tests/invalid_config.json index 725ff3bda9ad..4b3afce2d911 100644 --- a/airbyte-integrations/connectors/source-gitlab/integration_tests/invalid_config.json +++ b/airbyte-integrations/connectors/source-gitlab/integration_tests/invalid_config.json @@ -1,7 +1,11 @@ { "api_url": "gitlab.com", "private_token": "private_token-fake", - "groups": "new-group", - "projects": "new-ci-test", - "start_date": "2021-01-01T00:00:00Z" -} + "start_date": "2021-01-01T00:00:00Z", + "groups": "new-group-airbute", + "projects": "new-group-airbute/new-ci-test-project", + "credentials": { + "auth_type": "access_token", + "access_token": "migrated_from_old_config" + } +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-gitlab/source_gitlab/source.py b/airbyte-integrations/connectors/source-gitlab/source_gitlab/source.py index a7b0b0b8d35a..987209ac9286 100644 --- a/airbyte-integrations/connectors/source-gitlab/source_gitlab/source.py +++ b/airbyte-integrations/connectors/source-gitlab/source_gitlab/source.py @@ -8,7 +8,9 @@ from airbyte_cdk.models import SyncMode from airbyte_cdk.sources import AbstractSource from airbyte_cdk.sources.streams import Stream -from airbyte_cdk.sources.streams.http.auth import TokenAuthenticator +from airbyte_cdk.sources.streams.http.requests_native_auth.oauth import SingleUseRefreshTokenOauth2Authenticator +from airbyte_cdk.sources.streams.http.requests_native_auth.token import TokenAuthenticator +from requests.auth import AuthBase from .streams import ( Branches, @@ -40,6 +42,12 @@ ) +def get_authenticator(config: MutableMapping) -> AuthBase: + if config["credentials"]["auth_type"] == "access_token": + return TokenAuthenticator(token=config["credentials"]["access_token"]) + return SingleUseRefreshTokenOauth2Authenticator(config, token_refresh_endpoint=f"https://{config['api_url']}/oauth/token") + + class SourceGitlab(AbstractSource): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -67,7 +75,7 @@ def _projects_stream(self, config: MutableMapping[str, Any]) -> Union[Projects, def _auth_params(self, config: MutableMapping[str, Any]) -> Mapping[str, Any]: if not self.__auth_params: - auth = TokenAuthenticator(token=config["private_token"]) + auth = get_authenticator(config) self.__auth_params = dict(authenticator=auth, api_url=config["api_url"]) return self.__auth_params diff --git a/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json b/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json index ff6c9c82a8d4..10bbe5323e5e 100644 --- a/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json +++ b/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json @@ -2,22 +2,76 @@ "documentationUrl": "https://docs.airbyte.com/integrations/sources/gitlab", "connectionSpecification": { "$schema": "http://json-schema.org/draft-07/schema#", - "title": "Source GitLab Singer Spec", + "title": "Source Gitlab Spec", "type": "object", - "required": ["api_url", "private_token", "start_date"], + "required": ["api_url", "start_date", "credentials"], "additionalProperties": true, "properties": { - "private_token": { - "type": "string", - "title": "Private Token", - "description": "Log into your GitLab account and then generate a personal [Access Token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html).", - "airbyte_secret": true, - "order": 0 + "credentials": { + "title": "Authorization Method", + "type": "object", + "order": 0, + "oneOf": [ + { + "type": "object", + "title": "OAuth2.0", + "required": ["client_id", "client_secret", "refresh_token", "access_token", "token_expiry_date"], + "properties": { + "auth_type": { + "type": "string", + "const": "oauth2.0" + }, + "client_id": { + "type": "string", + "description": "The API ID of the Gitlab developer application.", + "airbyte_secret": true + }, + "client_secret": { + "type": "string", + "description": "The API Secret the Gitlab developer application.", + "airbyte_secret": true + }, + "access_token": { + "type": "string", + "description": "Access Token for making authenticated requests.", + "airbyte_secret": true + }, + "token_expiry_date": { + "type": "string", + "description": "The date-time when the access token should be refreshed.", + "format": "date-time" + }, + "refresh_token": { + "type": "string", + "description": "The key to refresh the expired access_token.", + "airbyte_secret": true + } + } + }, + { + "title": "Private Token", + "type": "object", + "required": ["access_token"], + "properties": { + "auth_type": { + "type": "string", + "const": "access_token" + }, + "access_token": { + "type": "string", + "title": "Private Token", + "description": "Log into your Gitlab account and then generate a personal Access Token.", + "airbyte_secret": true + } + } + } + ] }, "api_url": { "type": "string", "examples": ["gitlab.com"], "title": "API URL", + "default": "gitlab.com", "description": "Please enter your basic URL from GitLab instance.", "order": 1 }, @@ -44,5 +98,63 @@ "order": 4 } } + }, + "advanced_auth": { + "auth_flow_type": "oauth2.0", + "predicate_key": ["credentials", "auth_type"], + "predicate_value": "oauth2.0", + "oauth_config_specification": { + "oauth_user_input_from_connector_config_specification": { + "type": "object", + "properties": { + "domain": { + "type": "string", + "path_in_connector_config": ["api_url"] + } + } + }, + "complete_oauth_output_specification": { + "type": "object", + "properties": { + "access_token": { + "type": "string", + "path_in_connector_config": ["credentials", "access_token"] + }, + "refresh_token": { + "type": "string", + "path_in_connector_config": ["credentials", "refresh_token"] + }, + "token_expiry_date": { + "type": "string", + "format": "date-time", + "path_in_connector_config": ["credentials", "token_expiry_date"] + } + } + }, + "complete_oauth_server_input_specification": { + "type": "object", + "properties": { + "client_id": { + "type": "string" + }, + "client_secret": { + "type": "string" + } + } + }, + "complete_oauth_server_output_specification": { + "type": "object", + "properties": { + "client_id": { + "type": "string", + "path_in_connector_config": ["credentials", "client_id"] + }, + "client_secret": { + "type": "string", + "path_in_connector_config": ["credentials", "client_secret"] + } + } + } + } } } diff --git a/airbyte-integrations/connectors/source-gitlab/unit_tests/conftest.py b/airbyte-integrations/connectors/source-gitlab/unit_tests/conftest.py index e83bbf7a7c3a..2f9e5343d67b 100644 --- a/airbyte-integrations/connectors/source-gitlab/unit_tests/conftest.py +++ b/airbyte-integrations/connectors/source-gitlab/unit_tests/conftest.py @@ -10,5 +10,8 @@ def config(mocker): return { "start_date": "2021-01-01T00:00:00Z", "api_url": "gitlab.com", - "private_token": "secret_token" + "credentials": { + "auth_type": "access_token", + "access_token": "token" + } } diff --git a/airbyte-oauth/src/main/java/io/airbyte/oauth/OAuthImplementationFactory.java b/airbyte-oauth/src/main/java/io/airbyte/oauth/OAuthImplementationFactory.java index 9829dd736d49..dbb7de039e55 100644 --- a/airbyte-oauth/src/main/java/io/airbyte/oauth/OAuthImplementationFactory.java +++ b/airbyte-oauth/src/main/java/io/airbyte/oauth/OAuthImplementationFactory.java @@ -52,6 +52,7 @@ public OAuthImplementationFactory(final ConfigRepository configRepository, final .put("airbyte/source-strava", new StravaOAuthFlow(configRepository, httpClient)) .put("airbyte/source-surveymonkey", new SurveymonkeyOAuthFlow(configRepository, httpClient)) .put("airbyte/source-trello", new TrelloOAuthFlow(configRepository)) + .put("airbyte/source-gitlab", new GitlabOAuthFlow(configRepository, httpClient)) .put("airbyte/source-youtube-analytics", new YouTubeAnalyticsOAuthFlow(configRepository, httpClient)) // revert me .put("airbyte/source-youtube-analytics-business", new YouTubeAnalyticsBusinessOAuthFlow(configRepository, httpClient)) diff --git a/airbyte-oauth/src/main/java/io/airbyte/oauth/flows/GitlabOAuthFlow.java b/airbyte-oauth/src/main/java/io/airbyte/oauth/flows/GitlabOAuthFlow.java new file mode 100644 index 000000000000..d5ef29ddb989 --- /dev/null +++ b/airbyte-oauth/src/main/java/io/airbyte/oauth/flows/GitlabOAuthFlow.java @@ -0,0 +1,125 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.oauth.flows; + +import com.fasterxml.jackson.databind.JsonNode; +import com.google.common.collect.ImmutableMap; +import io.airbyte.config.persistence.ConfigNotFoundException; +import io.airbyte.config.persistence.ConfigRepository; +import io.airbyte.oauth.BaseOAuth2Flow; +import java.io.IOException; +import java.net.URISyntaxException; +import java.net.http.HttpClient; +import java.time.Clock; +import java.time.Instant; +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; +import java.util.function.Supplier; +import org.apache.http.client.utils.URIBuilder; + +/** + * Following docs from https://docs.gitlab.com/ee/api/oauth2.html#authorization-code-flow + */ +public class GitlabOAuthFlow extends BaseOAuth2Flow { + + private static final String ACCESS_TOKEN_URL = "https://%s/oauth/token"; + private final Clock clock; + + public GitlabOAuthFlow(final ConfigRepository configRepository, final HttpClient httpClient) { + super(configRepository, httpClient); + this.clock = Clock.systemUTC(); + } + + public GitlabOAuthFlow(final ConfigRepository configRepository, final HttpClient httpClient, final Supplier stateSupplier) { + super(configRepository, httpClient, stateSupplier); + this.clock = Clock.systemUTC(); + } + + public GitlabOAuthFlow(final ConfigRepository configRepository, final HttpClient httpClient, final Supplier stateSupplier, Clock clock) { + super(configRepository, httpClient, stateSupplier); + this.clock = clock; + } + + protected static String getDomain(JsonNode inputOAuthConfiguration) throws IOException { + final var domain = inputOAuthConfiguration.get("domain"); + if (domain == null) { + throw new IOException("Domain field is empty."); + } + return domain.asText(); + } + + @Override + protected String formatConsentUrl(final UUID definitionId, final String clientId, final String redirectUrl, final JsonNode inputOAuthConfiguration) + throws IOException { + final URIBuilder builder = new URIBuilder() + .setScheme("https") + .setHost(getDomain(inputOAuthConfiguration)) + .setPath("oauth/authorize") + .addParameter("client_id", clientId) + .addParameter("redirect_uri", redirectUrl) + .addParameter("state", getState()) + .addParameter("response_type", "code") + .addParameter("scope", "read_api"); + try { + return builder.build().toString(); + } catch (URISyntaxException e) { + throw new IOException("Failed to format Consent URL for OAuth flow", e); + } + } + + @Override + protected String getAccessTokenUrl(final JsonNode inputOAuthConfiguration) { + final var domain = inputOAuthConfiguration.get("domain"); + return String.format(ACCESS_TOKEN_URL, domain == null ? "gitlab.com" : domain.asText()); + } + + @Override + protected Map getAccessTokenQueryParameters(final String clientId, + final String clientSecret, + final String authCode, + final String redirectUrl) { + return ImmutableMap.builder() + .put("client_id", clientId) + .put("client_secret", clientSecret) + .put("code", authCode) + .put("grant_type", "authorization_code") + .put("redirect_uri", redirectUrl) + .build(); + } + + @Override + protected Map extractOAuthOutput(final JsonNode data, final String accessTokenUrl) throws IOException { + final Map result = new HashMap<>(); + if (data.has("refresh_token")) { + result.put("refresh_token", data.get("refresh_token").asText()); + } else { + throw new IOException(String.format("Missing 'refresh_token' in query params from %s", accessTokenUrl)); + } + if (data.has("access_token")) { + result.put("access_token", data.get("access_token").asText()); + } else { + throw new IOException(String.format("Missing 'access_token' in query params from %s", accessTokenUrl)); + } + if (data.has("expires_in")) { + Instant expires_in = Instant.now(this.clock).plusSeconds(data.get("expires_in").asInt()); + result.put("token_expiry_date", expires_in.toString()); + } else { + throw new IOException(String.format("Missing 'expires_in' in query params from %s", accessTokenUrl)); + } + return result; + } + + @Override + @Deprecated + public Map completeSourceOAuth(final UUID workspaceId, + final UUID sourceDefinitionId, + final Map queryParams, + final String redirectUrl) + throws IOException, ConfigNotFoundException { + throw new IOException("Deprecated API not supported by this connector"); + } + +} diff --git a/airbyte-oauth/src/test-integration/java/io.airbyte.oauth.flows/GitlabOAuthFlowIntegrationTest.java b/airbyte-oauth/src/test-integration/java/io.airbyte.oauth.flows/GitlabOAuthFlowIntegrationTest.java new file mode 100644 index 000000000000..8127fbaa106f --- /dev/null +++ b/airbyte-oauth/src/test-integration/java/io.airbyte.oauth.flows/GitlabOAuthFlowIntegrationTest.java @@ -0,0 +1,85 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.oauth.flows; + +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.Mockito.when; + +import com.fasterxml.jackson.databind.JsonNode; +import com.google.common.collect.ImmutableMap; +import io.airbyte.commons.json.Jsons; +import io.airbyte.config.SourceOAuthParameter; +import io.airbyte.config.persistence.ConfigNotFoundException; +import io.airbyte.config.persistence.ConfigRepository; +import io.airbyte.oauth.OAuthFlowImplementation; +import io.airbyte.validation.json.JsonValidationException; +import java.io.IOException; +import java.net.http.HttpClient; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.List; +import java.util.Map; +import java.util.UUID; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +public class GitlabOAuthFlowIntegrationTest extends OAuthFlowIntegrationTest { + + protected static final Path CREDENTIALS_PATH = Path.of("secrets/gitlab.json"); + protected static final String REDIRECT_URL = "http://localhost:8000/auth_flow"; + protected static final int SERVER_LISTENING_PORT = 8000; + + @Override + protected Path getCredentialsPath() { + return CREDENTIALS_PATH; + } + + @Override + protected OAuthFlowImplementation getFlowImplementation(ConfigRepository configRepository, HttpClient httpClient) { + return new GitlabOAuthFlow(configRepository, httpClient); + } + + @Override + protected int getServerListeningPort() { + return SERVER_LISTENING_PORT; + } + + @BeforeEach + public void setup() throws IOException { + super.setup(); + } + + @Test + public void testFullGitlabOAuthFlow() throws InterruptedException, ConfigNotFoundException, IOException, JsonValidationException { + int limit = 20; + final UUID workspaceId = UUID.randomUUID(); + final UUID definitionId = UUID.randomUUID(); + final String fullConfigAsString = Files.readString(CREDENTIALS_PATH); + final JsonNode credentialsJson = Jsons.deserialize(fullConfigAsString); + when(configRepository.listSourceOAuthParam()).thenReturn(List.of(new SourceOAuthParameter() + .withOauthParameterId(UUID.randomUUID()) + .withSourceDefinitionId(definitionId) + .withWorkspaceId(workspaceId) + .withConfiguration(Jsons.jsonNode(ImmutableMap.builder() + .put("client_id", credentialsJson.get("client_id").asText()) + .put("client_secret", credentialsJson.get("client_secret").asText()) + .build())))); + final String url = flow.getSourceConsentUrl(workspaceId, definitionId, REDIRECT_URL, Jsons.emptyObject(), null); + LOGGER.info("Waiting for user consent at: {}", url); + // TODO: To automate, start a selenium job to navigate to the Consent URL and click on allowing + // access... + while (!serverHandler.isSucceeded() && limit > 0) { + Thread.sleep(1000); + limit -= 1; + } + assertTrue(serverHandler.isSucceeded(), "Failed to get User consent on time"); + final Map params = flow.completeSourceOAuth(workspaceId, definitionId, + Map.of("code", serverHandler.getParamValue()), REDIRECT_URL); + LOGGER.info("Response from completing OAuth Flow is: {}", params.toString()); + assertTrue(params.containsKey("access_token")); + assertTrue(params.get("access_token").toString().length() > 0); + } + +} diff --git a/airbyte-oauth/src/test/java/io/airbyte/oauth/flows/GitlabOAuthFlowTest.java b/airbyte-oauth/src/test/java/io/airbyte/oauth/flows/GitlabOAuthFlowTest.java new file mode 100644 index 000000000000..6dea11d2be27 --- /dev/null +++ b/airbyte-oauth/src/test/java/io/airbyte/oauth/flows/GitlabOAuthFlowTest.java @@ -0,0 +1,93 @@ +/* + * Copyright (c) 2022 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.oauth.flows; + +import com.fasterxml.jackson.databind.JsonNode; +import io.airbyte.commons.json.Jsons; +import io.airbyte.oauth.BaseOAuthFlow; +import io.airbyte.oauth.MoreOAuthParameters; +import java.time.Clock; +import java.time.Instant; +import java.time.ZoneId; +import java.util.Map; +import org.junit.jupiter.api.Test; + +@SuppressWarnings("PMD.JUnitTestsShouldIncludeAssert") +class GitlabOAuthFlowTest extends BaseOAuthFlowTest { + + @Override + protected BaseOAuthFlow getOAuthFlow() { + final Clock clock = Clock.fixed(Instant.ofEpochSecond(1673464409), ZoneId.of("UTC")); + return new GitlabOAuthFlow(getConfigRepository(), getHttpClient(), this::getConstantState, clock); + } + + @Override + protected String getExpectedConsentUrl() { + return "https://gitlab.com/oauth/authorize?client_id=test_client_id&redirect_uri=https%3A%2F%2Fairbyte.io&state=state&response_type=code&scope=read_api"; + } + + @Override + @SuppressWarnings("PMD.AvoidDuplicateLiterals") + protected JsonNode getCompleteOAuthOutputSpecification() { + return getJsonSchema(Map.of( + "token_expiry_date", Map.of("type", "string"), + "access_token", Map.of("type", "string"), + "refresh_token", Map.of("type", "string"))); + } + + @Override + protected JsonNode getInputOAuthConfiguration() { + return Jsons.jsonNode(Map.of("domain", "gitlab.com")); + } + + @Override + protected JsonNode getUserInputFromConnectorConfigSpecification() { + return getJsonSchema(Map.of("domain", Map.of("type", "string"))); + } + + @Override + protected Map getExpectedOutput() { + return Map.of( + "expires_in", "720", + "refresh_token", "refresh_token_response", + "access_token", "access_token_response", + "client_id", MoreOAuthParameters.SECRET_MASK, + "client_secret", MoreOAuthParameters.SECRET_MASK); + } + + @Override + protected Map getExpectedFilteredOutput() { + return Map.of( + "token_expiry_date", "2023-01-11T19:25:29Z", + "refresh_token", "refresh_token_response", + "access_token", "access_token_response", + "client_id", MoreOAuthParameters.SECRET_MASK); + } + + @Test + @Override + void testEmptyInputCompleteDestinationOAuth() {} + + @Test + @Override + void testDeprecatedCompleteDestinationOAuth() {} + + @Test + @Override + void testEmptyOutputCompleteDestinationOAuth() {} + + @Test + @Override + void testCompleteDestinationOAuth() {} + + @Test + @Override + void testGetDestinationConsentUrlEmptyOAuthSpec() {} + + @Test + @Override + void testGetDestinationConsentUrl() {} + +} diff --git a/docs/integrations/sources/gitlab.md b/docs/integrations/sources/gitlab.md index fcffd2c5fddf..0fa5220f5121 100644 --- a/docs/integrations/sources/gitlab.md +++ b/docs/integrations/sources/gitlab.md @@ -105,6 +105,7 @@ Gitlab has the [rate limits](https://docs.gitlab.com/ee/user/gitlab_com/index.ht | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------| +| 1.0.0 | 2022-12-05 | [7506](https://github.com/airbytehq/airbyte/pull/7506) | Add `OAuth2.0` authentication option | | 0.1.12 | 2022-12-15 | [20542](https://github.com/airbytehq/airbyte/pull/20542) | Revert HttpAvailability changes, run on cdk 0.15.0 | | 0.1.11 | 2022-12-14 | [20479](https://github.com/airbytehq/airbyte/pull/20479) | Use HttpAvailabilityStrategy + add unit tests | | 0.1.10 | 2022-12-12 | [20384](https://github.com/airbytehq/airbyte/pull/20384) | Fetch groups along with their subgroups |