Skip to content

Commit 93a1eeb

Browse files
committed
debug changed-files
Signed-off-by: Peter St. John <pstjohn@nvidia.com>
1 parent 9ca877b commit 93a1eeb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/bionemo-recipes.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,16 @@ jobs:
2727
with:
2828
fetch-depth: 0
2929

30+
- name: Get main branch latest commit
31+
id: main-commit
32+
run: |
33+
echo "main_commit=$(git rev-parse main)" >> $GITHUB_OUTPUT
34+
3035
- name: Get changed files
3136
id: changed-files
3237
uses: step-security/changed-files@v46
3338
with:
34-
base_sha: $(git rev-parse main)
39+
base_sha: ${{ steps.main-commit.outputs.main_commit }}
3540

3641
- name: List all changed files
3742
env:

0 commit comments

Comments
 (0)