From f733a7ebb1da265ec0a1c4aa84b1262c1d8d7d05 Mon Sep 17 00:00:00 2001 From: nrs <38722970+nrslib@users.noreply.github.com> Date: Wed, 4 Mar 2026 20:07:13 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20cc-resolve=20push=20=E5=BE=8C=E3=81=AB?= =?UTF-8?q?=20CI=20=E3=82=92=E8=87=AA=E5=8B=95=E3=83=88=E3=83=AA=E3=82=AC?= =?UTF-8?q?=E3=83=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cc-resolve.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/cc-resolve.yml b/.github/workflows/cc-resolve.yml index b3eae43..3ab7ccb 100644 --- a/.github/workflows/cc-resolve.yml +++ b/.github/workflows/cc-resolve.yml @@ -247,9 +247,19 @@ jobs: if [ "$AHEAD" -gt 0 ]; then echo "Pushing $AHEAD commit(s)" git push + echo "pushed=true" >> "$GITHUB_OUTPUT" else echo "Nothing to push" + echo "pushed=false" >> "$GITHUB_OUTPUT" fi + id: push + + - name: Trigger CI + if: steps.push.outputs.pushed == 'true' + run: | + gh workflow run ci.yml --ref "${{ steps.pr.outputs.branch }}" + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Report result if: always()