From 3c16b90bdfc5f98dc4a0c64afdff2f84199a2596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Enr=C3=ADquez?= Date: Tue, 20 Dec 2022 16:50:54 +0100 Subject: [PATCH] [Chore] Fix CI danger checks Problem: the danger checks were failing because it was configured to fetch only and partially the current PR branch. Solution: force the danger checks CI to get all the repository branches. --- .github/workflows/danger.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/danger.yml b/.github/workflows/danger.yml index e7ce987..d9feccc 100644 --- a/.github/workflows/danger.yml +++ b/.github/workflows/danger.yml @@ -11,6 +11,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - uses: ruby/setup-ruby@v1 with: ruby-version: '2.7'