Skip to content

Commit 5d48738

Browse files
authored
Don't fail if review issue occurs (#5434)
1 parent e2f161c commit 5d48738

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/devflow-pr-review.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ concurrency:
2424

2525
env:
2626
DEVFLOW_REPOSITORY: ${{ vars.DF_REPO }}
27-
DEVFLOW_REF: v0.1.15
27+
DEVFLOW_REF: main
2828
TARGET_REPO_PATH: ${{ github.workspace }}/target-repo
2929
DEVFLOW_PATH: ${{ github.workspace }}/devflow
3030

@@ -108,6 +108,10 @@ jobs:
108108
needs: team_check
109109
if: ${{ needs.team_check.outputs.is_team_member == 'true' }}
110110
timeout-minutes: 60
111+
# Advisory check: failures here should not block the PR. The reviewer
112+
# posts comments as a best-effort signal; if the pipeline breaks, the
113+
# PR author should still be able to merge without a red required check.
114+
continue-on-error: true
111115

112116
steps:
113117
# Safe checkout: base repo only, not the untrusted PR head.

0 commit comments

Comments
 (0)