From 5f21f5dd595ff87ac3913a9850b422e8b23d539e Mon Sep 17 00:00:00 2001 From: Shun Kakinoki Date: Mon, 22 Sep 2025 05:48:42 +0900 Subject: [PATCH 1/2] ci: optimize Bun workflow with custom composite action - Replace separate Bun setup and install steps with custom composite action - Use shunkakinoki/actions/.github/actions/auto-merge composite action - Reduces workflow complexity and improves maintainability --- .github/workflows/bun.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/bun.yml b/.github/workflows/bun.yml index e311916..65fa10e 100644 --- a/.github/workflows/bun.yml +++ b/.github/workflows/bun.yml @@ -17,9 +17,7 @@ jobs: - name: Checkout uses: actions/checkout@v5 - name: Setup Bun - uses: oven-sh/setup-bun@v2 - - name: Install dependencies - run: bun install + uses: shunkakinoki/actions/.github/actions/auto-merge@156beb8dbd9b84135a994da9ea77398d91e33df6 - name: Check run: bun run check - name: Format From 944d762b0257372f94ba11965f120d7608d73fdf Mon Sep 17 00:00:00 2001 From: Shun Kakinoki Date: Mon, 22 Sep 2025 05:50:34 +0900 Subject: [PATCH 2/2] fix: update Bun workflow to use setup-bun action - Replace auto-merge action with setup-bun action in the Bun workflow - Ensures proper setup of Bun environment for CI/CD processes - Maintains consistency with recent changes to the workflow structure --- .github/workflows/bun.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bun.yml b/.github/workflows/bun.yml index 65fa10e..c4788e8 100644 --- a/.github/workflows/bun.yml +++ b/.github/workflows/bun.yml @@ -17,7 +17,7 @@ jobs: - name: Checkout uses: actions/checkout@v5 - name: Setup Bun - uses: shunkakinoki/actions/.github/actions/auto-merge@156beb8dbd9b84135a994da9ea77398d91e33df6 + uses: shunkakinoki/actions/.github/actions/setup-bun@156beb8dbd9b84135a994da9ea77398d91e33df6 - name: Check run: bun run check - name: Format