From c246a940298a0e3d5ef070830e09107297fee54d Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 22 Oct 2024 18:34:43 +0100 Subject: [PATCH] Debug danger --- .github/workflows/labeling.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/labeling.yml b/.github/workflows/labeling.yml index 4693ca570c..e67795b922 100644 --- a/.github/workflows/labeling.yml +++ b/.github/workflows/labeling.yml @@ -23,8 +23,17 @@ jobs: ruby-version: 3.1 rubygems: 3.4.10 bundler-cache: true + - name: List remotes + run: | + git remote -v + - name: List branches + run: | + git branch v + - name: List remote refs + run: | + git ls-remote - name: Danger env: DANGER_GITHUB_BEARER_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - bundle exec danger --verbose --base=${{ github.base_ref }} --head=${{ github.head_ref }} + bundle exec danger --verbose --base=${{ github.event.pull_request.base.sha }} --head=${{ github.event.pull_request.head.sha }}