From 9e85985f68e365774c93ffe0f2d8e992b2a4578f Mon Sep 17 00:00:00 2001 From: jariy17 Date: Wed, 9 Sep 2026 20:20:04 +0000 Subject: [PATCH] Default PR-review-notification reusable runner to codebuild Flip the `runner` input default from `ubuntu` to `codebuild` so callers that don't pass `runner` use the self-hosted CodeBuild fleet by default. Callers can still force GitHub-hosted runners with `runner: ubuntu`. --- .github/workflows/reusable-slack-pr-review-notification.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-slack-pr-review-notification.yml b/.github/workflows/reusable-slack-pr-review-notification.yml index a9a7585..44d14d4 100644 --- a/.github/workflows/reusable-slack-pr-review-notification.yml +++ b/.github/workflows/reusable-slack-pr-review-notification.yml @@ -33,10 +33,10 @@ on: workflow_call: inputs: runner: - description: "Runner to use: 'ubuntu' (GitHub-hosted, default) or 'codebuild' (self-hosted CodeBuild fleet)" + description: "Runner to use: 'codebuild' (self-hosted CodeBuild fleet, default) or 'ubuntu' (GitHub-hosted)" required: false type: string - default: ubuntu + default: codebuild permissions: pull-requests: read