Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/actions/helper-detect-changed-files/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ outputs:
runs:
using: "composite"
steps:
- name: Dump github.event
shell: bash
run: echo '${{ toJson(github.event) }}'
- name: Detect changed files and compute condition
id: filter
shell: bash
Expand All @@ -31,7 +34,9 @@ runs:
# This should also give 0 changed files so this is mostly explanation of the
# 'interesting' GHA flow.
echo "should_run=false" >> $GITHUB_OUTPUT
exit 0
git log -p
sleep 30m
exit 1
fi
OREF="failure"
CREF="failure"
Expand Down
Loading