We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37138d3 commit 349186dCopy full SHA for 349186d
2 files changed
.github/workflows/bionemo-recipes.yml
@@ -34,6 +34,9 @@ jobs:
34
base_sha: main
35
dir_names: true
36
dir_names_max_depth: 2
37
+ files: |
38
+ 'models/**'
39
+ 'recipes/**'
40
41
- name: Show output
42
run: |
.github/workflows/unit-tests.yml
@@ -29,6 +29,7 @@ jobs:
29
- uses: actions/checkout@v4
30
with:
31
fetch-depth: 0
32
+
33
- uses: step-security/changed-files@v46
id: changed-files
@@ -37,13 +38,13 @@ jobs:
'!models/**'
'!recipes/**'
'!**.md'
- - name: List all changed files
- env:
- ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
+ - name: Show output
43
44
- for file in ${ALL_CHANGED_FILES}; do
45
- echo "$file was changed"
46
- done
+ echo '${{ toJSON(steps.changed-files.outputs) }}'
+ shell:
+ bash
47
48
49
pre-commit:
50
runs-on: ubuntu-latest
0 commit comments