From acfb88e7b770029b0c8415aa57523922f0f70af9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Feb 2026 05:12:34 +0000 Subject: [PATCH 1/3] Initial plan From d9542133512ea0069eeb4d67f869d7a170b470a3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Feb 2026 05:24:12 +0000 Subject: [PATCH 2/3] Fix smoke-trigger.yml missing permissions for workflow_call Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/smoke-trigger.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/smoke-trigger.yml b/.github/workflows/smoke-trigger.yml index 62062a92de7..70940fdc20f 100644 --- a/.github/workflows/smoke-trigger.yml +++ b/.github/workflows/smoke-trigger.yml @@ -11,4 +11,6 @@ jobs: uses: ./.github/workflows/smoke-workflow-call.lock.yml permissions: contents: read + discussions: write + issues: write pull-requests: write From c111c0cc5c55f5f180ea203ade804b771a467502 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Feb 2026 05:37:27 +0000 Subject: [PATCH 3/3] Add secrets: inherit to smoke-trigger.yml to pass secrets to called workflow Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/smoke-trigger.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/smoke-trigger.yml b/.github/workflows/smoke-trigger.yml index 70940fdc20f..287c0df69ce 100644 --- a/.github/workflows/smoke-trigger.yml +++ b/.github/workflows/smoke-trigger.yml @@ -9,6 +9,7 @@ jobs: call-smoke-workflow-call: if: github.event_name == 'workflow_dispatch' || github.event.label.name == 'smoke-workflow-call' uses: ./.github/workflows/smoke-workflow-call.lock.yml + secrets: inherit permissions: contents: read discussions: write