We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca877b commit 93a1eebCopy full SHA for 93a1eeb
1 file changed
.github/workflows/bionemo-recipes.yml
@@ -27,11 +27,16 @@ jobs:
27
with:
28
fetch-depth: 0
29
30
+ - name: Get main branch latest commit
31
+ id: main-commit
32
+ run: |
33
+ echo "main_commit=$(git rev-parse main)" >> $GITHUB_OUTPUT
34
+
35
- name: Get changed files
36
id: changed-files
37
uses: step-security/changed-files@v46
38
- base_sha: $(git rev-parse main)
39
+ base_sha: ${{ steps.main-commit.outputs.main_commit }}
40
41
- name: List all changed files
42
env:
0 commit comments