From 6c1a7e2a9649b20e67569549e0260417fcd5d787 Mon Sep 17 00:00:00 2001
From: Ben Grande <ben.grande.b@gmail.com>
Date: Mon, 6 Nov 2023 19:21:11 +0000
Subject: [PATCH] ci: print info

---
 .github/workflows/main.yaml | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index 84db823..2185ad0 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -31,7 +31,17 @@ jobs:
       - uses: pre-commit/action@v3.0.0
 
       # TODO: lint range of commits, not only the latest pushed
-      - name: Gitlint on range
+      - name: info
+        run: |
+          echo ${{ github.sha }}
+          echo ${{ github.event.after }}
+          echo ${{ github.event.base_ref }}
+          echo ${{ github.event.before }}
+          echo ${{ github.event.commits }}
+          echo ${{ github.event.compare }}
+          echo ${{ github.event.ref }}
+          echo ${{ github.event.sender }}
+      - name: Gitlint
         # yamllint disable-line rule:line-length
         run: |
           if test "${{ github.after }}" = "${{ github.sha }}" ||