From 31f9ff1237ead1b7f73c487e2caa187c3dac6dd8 Mon Sep 17 00:00:00 2001 From: Patrick Hawley Date: Fri, 18 Apr 2025 15:47:40 -0500 Subject: [PATCH 1/2] Update actions.yml --- .github/workflows/actions.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index b5c46a6..b6cbcac 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -13,6 +13,8 @@ jobs: fetch-depth: 2 - name: Echo changed files run: echo "$(git diff --name-status origin/main..HEAD)" + - name: Echo github.event + run: echo "${{ github.event.number }}" - name: Get committed files id: get_commit_data run: echo "committed_files='$(gh pr view ${PR_NUMBER} --json baseRefName,headRefName,body,files)'" >> "$GITHUB_OUTPUT" From a2f933706c8f5a2ce745b31771c99050601e2a0c Mon Sep 17 00:00:00 2001 From: Patrick Hawley Date: Fri, 18 Apr 2025 15:48:49 -0500 Subject: [PATCH 2/2] Update actions.yml --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index b6cbcac..f2df8bb 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -14,7 +14,7 @@ jobs: - name: Echo changed files run: echo "$(git diff --name-status origin/main..HEAD)" - name: Echo github.event - run: echo "${{ github.event.number }}" + run: echo "${{ github.event }}" - name: Get committed files id: get_commit_data run: echo "committed_files='$(gh pr view ${PR_NUMBER} --json baseRefName,headRefName,body,files)'" >> "$GITHUB_OUTPUT"