Skip to content
Snippets Groups Projects
Verified Commit 1d28627f authored by Nikola Milojevic's avatar Nikola Milojevic :palm_tree: Committed by GitLab
Browse files

Merge branch 'dc/10842-confidential' into 'master'

Add cut-off date for summarize_comments

See merge request !167221



Merged-by: default avatarNikola Milojevic <nmilojevic@gitlab.com>
Approved-by: default avatarNikola Milojevic <nmilojevic@gitlab.com>
Co-authored-by: Donald Cook's avatarDonald Cook <dcook@gitlab.com>
parents 0a6d6571 ebea3333
No related branches found
No related tags found
2 merge requests!170053Security patch upgrade alert: Only expose to admins 17-4,!167221Add cut-off date for summarize_comments
Pipeline #1484262622 passed with warnings
Pipeline: E2E GDK

#1484288970

    Pipeline: E2E Omnibus GitLab EE

    #1484276139

      Pipeline: E2E CNG

      #1484276014

        +30
        ......@@ -125,6 +125,7 @@ services: # Cloud connector features (i.e. code_suggestions, duo_chat...)
        - generate_commit_message
        summarize_comments:
        backend: 'gitlab-ai-gateway'
        cut_off_date: 2024-10-17 00:00:00 UTC
        bundled_with:
        duo_enterprise:
        unit_primitives:
        ......
        ......@@ -29,6 +29,7 @@
        let(:glab_ask_git_command_cut_off_date) { Time.zone.parse("2024-10-17 00:00:00 UTC").utc }
        let(:generate_commit_message_cut_off_date) { Time.zone.parse("2024-10-17 00:00:00 UTC").utc }
        let(:troubleshoot_job_cut_off_date) { Time.zone.parse("2024-10-17 00:00:00 UTC").utc }
        let(:summarize_comments_cut_off_date) { Time.zone.parse("2024-10-17 00:00:00 UTC").utc }
        let(:anthropic_proxy_bundled_with) do
        {
        ......@@ -165,7 +166,7 @@
        backend],
        glab_ask_git_command: [glab_ask_git_command_cut_off_date, glab_ask_git_command_bundled_with, backend],
        explain_vulnerability: [nil, explain_vulnerability_bundled_with, backend],
        summarize_comments: [nil, summarize_comments_bundled_with, backend],
        summarize_comments: [summarize_comments_cut_off_date, summarize_comments_bundled_with, backend],
        observability_all: [nil, observability_all_bundled_with, gob_backend],
        troubleshoot_job: [troubleshoot_job_cut_off_date, troubleshoot_job_bundled_with, backend],
        sast: [nil, sast_bundled_with, sast_backend],
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment