We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 318070e commit ea50bffCopy full SHA for ea50bff
.github/workflows/tests_hw_wokwi.yml
@@ -259,14 +259,16 @@ jobs:
259
260
- name: Wait for GitLab sync
261
if: ${{ steps.check-tests.outputs.enabled == 'true' }}
262
+ env:
263
+ PUSH_TIME: ${{ needs.get-artifacts.outputs.push_time }}
264
run: |
265
# A webhook to sync the repository is sent to GitLab when a commit is pushed to GitHub
266
# We wait for 10 minutes after the push to GitHub to be safe
267
268
echo "Ensuring GitLab sync has completed before triggering pipeline..."
269
270
# Use push time determined in get-artifacts job
- push_time="${{ needs.get-artifacts.outputs.push_time }}"
271
+ push_time="$PUSH_TIME"
272
273
if [ -n "$push_time" ]; then
274
echo "Push time: $push_time"
0 commit comments