From 6948ad3c273d2f1a4848877bf985347de08c1379 Mon Sep 17 00:00:00 2001 From: PastaClaw Date: Fri, 15 May 2026 12:20:16 +0000 Subject: [PATCH] ci: tolerate conflict comment permission errors --- .github/workflows/predict-conflicts.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/predict-conflicts.yml b/.github/workflows/predict-conflicts.yml index 356ec7fcce68..cf7515f7ce7a 100644 --- a/.github/workflows/predict-conflicts.yml +++ b/.github/workflows/predict-conflicts.yml @@ -35,7 +35,8 @@ jobs: continue-on-error: true - name: Post conflict comment if: steps.validate_conflicts.outputs.has_conflicts == 'true' - uses: mshick/add-pr-comment@v2 + continue-on-error: true + uses: mshick/add-pr-comment@v3 with: message-id: conflict-prediction message: | @@ -48,7 +49,8 @@ jobs: Please coordinate with the authors of these PRs to avoid merge conflicts. - name: Remove conflict comment if no conflicts if: steps.validate_conflicts.outputs.has_conflicts == 'false' - uses: mshick/add-pr-comment@v2 + continue-on-error: true + uses: mshick/add-pr-comment@v3 with: message-id: conflict-prediction message: |