Compare commits

..

No commits in common. "7dbe24eb866ceae37e2e9b3d396413262c8b5e6c" and "3cf188f493103b5f12f11221186f8fbd07f2be10" have entirely different histories.

View file

@ -302,10 +302,10 @@ runs:
git_previous_commit=${{github.event.before}}
elif [ "${{github.event_name}}" == "pull_request" ]; then
git_previous_commit=${{github.event.pull_request.base.sha}}
elif [ "${{github.event_name}}" == "workflow_dispatch" ] || [ "${{github.event_name}}" == "schedule" ]; then
elif [ "${{github.event_name}}" == "workflow_dispatch" ]; then
git_previous_commit=$(git rev-parse ${{github.sha}}^)
else
echo "::error::Event not supported for delta synchronization: ${{github.event_name}}. Supported events are 'push', 'pull_request', 'workflow_dispatch' and 'schedule'."
echo "::error::Event not supported for delta synchronization: ${{github.event_name}}. Supported events are 'push', 'pull_request' and 'workflow_dispatch'."
exit 1
fi
else