Skip to content

Commit 0f39ee0

Browse files
committed
Fix invalid workflow
1 parent d5cd74b commit 0f39ee0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ jobs:
122122

123123
- name: Get all changed content files
124124
env:
125+
CHANGED_FILES: ${{needs.decide-jobs.outputs.all-changed-files}}
125126
# If changing these regexes, test them on https://regex101.com/ with the
126127
# following paths (you can paste the block in and uncomment it):
127128
# Add new tests if necessary
@@ -136,8 +137,6 @@ jobs:
136137
# docs/guides/_toc.json
137138
# scripts/nb-tester/example-notebook.ipynb
138139
id: changed-content-files
139-
env:
140-
CHANGED_FILES: ${{needs.decide-jobs.outputs.all-changed-files}}
141140
run: |
142141
CHANGED_CONTENT_FILES=$(echo "${CHANGED_FILES[@]}" | grep -P $CONTENT_FILE_REGEX || true)
143142
if [ "$CHANGED_CONTENT_FILES" != '' ]

0 commit comments

Comments
 (0)