From 75fea1f2e0670b3ceca0ef161ecd9f0615a51c42 Mon Sep 17 00:00:00 2001 From: Ekrem Seren Date: Sat, 14 Dec 2024 01:32:47 +0300 Subject: [PATCH] Add diff against dev branch to help with PR reviews (#57) --- .github/workflows/ci.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 447aa1e..1edb38d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -88,6 +88,19 @@ jobs: - name: Run diff against branch run: scripts/diff_against_branch.sh + # diff check against dev branch to help with the PR reviews + diff-dev: + name: Diff against dev to help with the PR reviews + runs-on: ubuntu-latest + steps: + - name: Checkout the repo + uses: actions/checkout@v4 + - name: Run diff against branch + run: | + scripts/diff_against_branch.sh dev || true + echo -e "\nšŸ›Ÿ Note: This diff check against dev branch is for PR review purposes only." + echo -e "šŸ›Ÿ Any reported differences are informational and not considered errors.\n" + # dependency check to catch if proto files were not updated correctly dependency-check: runs-on: ubuntu-latest