From 5d4873888f6fb9e75f19dfbb9070f637fd9f430d Mon Sep 17 00:00:00 2001 From: Evan Mattson <35585003+moonbox3@users.noreply.github.com> Date: Thu, 23 Apr 2026 13:24:21 +0900 Subject: [PATCH] Don't fail if review issue occurs (#5434) --- .github/workflows/devflow-pr-review.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/devflow-pr-review.yml b/.github/workflows/devflow-pr-review.yml index 9371fa9b89..5ce9592a51 100644 --- a/.github/workflows/devflow-pr-review.yml +++ b/.github/workflows/devflow-pr-review.yml @@ -24,7 +24,7 @@ concurrency: env: DEVFLOW_REPOSITORY: ${{ vars.DF_REPO }} - DEVFLOW_REF: v0.1.15 + DEVFLOW_REF: main TARGET_REPO_PATH: ${{ github.workspace }}/target-repo DEVFLOW_PATH: ${{ github.workspace }}/devflow @@ -108,6 +108,10 @@ jobs: needs: team_check if: ${{ needs.team_check.outputs.is_team_member == 'true' }} timeout-minutes: 60 + # Advisory check: failures here should not block the PR. The reviewer + # posts comments as a best-effort signal; if the pipeline breaks, the + # PR author should still be able to merge without a red required check. + continue-on-error: true steps: # Safe checkout: base repo only, not the untrusted PR head.