@@ -102,11 +102,11 @@ jobs:
102
102
preflight :
103
103
runs-on : ubuntu-latest
104
104
outputs :
105
- changes_substrate : ${{ steps.set_changes.outputs.substrate_any_changed || steps.set_changes.outputs.currentWorkflow_any_changed }}
106
- changes_cumulus : ${{ steps.set_changes.outputs.cumulus_any_changed || steps.set_changes.outputs.currentWorkflow_any_changed }}
107
- changes_polkadot : ${{ steps.set_changes.outputs.polkadot_any_changed || steps.set_changes.outputs.currentWorkflow_any_changed }}
108
- changes_bridges : ${{ steps.set_changes.outputs.bridges_any_changed || steps.set_changes.outputs.currentWorkflow_any_changed }}
109
- changes_templates : ${{ steps.set_changes.outputs.templates_any_changed || steps.set_changes.outputs.currentWorkflow_any_changed }}
105
+ changes_substrate : true
106
+ changes_cumulus : true
107
+ changes_polkadot : true
108
+ changes_bridges : true
109
+ changes_templates : true
110
110
111
111
ZOMBIENET_IMAGE : ${{ steps.set_vars.outputs.ZOMBIENET_IMAGE }}
112
112
ZOMBIENET_RUNNER : ${{ steps.set_vars.outputs.ZOMBIENET_RUNNER }}
@@ -139,25 +139,26 @@ jobs:
139
139
echo "currentWorkflowFile=$(echo ${{ github.workflow_ref }} | sed -nE "s/.*(\.github\/workflows\/[a-zA-Z0-9_-]*\.y[a]?ml)@refs.*/\1/p")" >> $GITHUB_OUTPUT
140
140
echo "currentActionDir=$(echo ${{ github.action_path }} | sed -nE "s/.*(\.github\/actions\/[a-zA-Z0-9_-]*)/\1/p")" >> $GITHUB_OUTPUT
141
141
142
- - name : Set changes
143
- id : set_changes
144
- uses : tj-actions/changed-files@v45
145
- with :
146
- files_yaml : |
147
- substrate:
148
- - 'substrate/**/*'
149
- cumulus:
150
- - 'cumulus/**/*'
151
- polkadot:
152
- - 'polkadot/**/*'
153
- bridges:
154
- - 'bridges/**/*'
155
- templates:
156
- - 'templates/**/*'
157
- currentWorkflow:
158
- - '${{ steps.current_file.outputs.currentWorkflowFile }}'
159
- - '.github/workflows/zombienet-reusable-preflight.yml'
160
- - '.github/zombienet-env'
142
+ # removed due to https://news.ycombinator.com/item?id=43368870
143
+ # - name: Set changes
144
+ # id: set_changes
145
+ # uses: tj-actions/changed-files@v45
146
+ # with:
147
+ # files_yaml: |
148
+ # substrate:
149
+ # - 'substrate/**/*'
150
+ # cumulus:
151
+ # - 'cumulus/**/*'
152
+ # polkadot:
153
+ # - 'polkadot/**/*'
154
+ # bridges:
155
+ # - 'bridges/**/*'
156
+ # templates:
157
+ # - 'templates/**/*'
158
+ # currentWorkflow:
159
+ # - '${{ steps.current_file.outputs.currentWorkflowFile }}'
160
+ # - '.github/workflows/zombienet-reusable-preflight.yml'
161
+ # - '.github/zombienet-env'
161
162
162
163
#
163
164
# Set environment vars (including runner/image)
@@ -187,7 +188,6 @@ jobs:
187
188
shell : bash
188
189
run : |
189
190
echo "workflow file: ${{ steps.current_file.outputs.currentWorkflowFile }}"
190
- echo "Modified: ${{ steps.set_changes.outputs.modified_keys }}"
191
191
echo "ZOMBIENET_IMAGE: ${{ steps.set_vars.outputs.ZOMBIENET_IMAGE }}"
192
192
193
193
#
0 commit comments