You're going to have a really hard time doing this via Automator actions. It just doesn't have the hooks for it.
As you can see from the log, the actions you have are simply going to create a text-based list of events. You can't use this to create new events using Automator's New Calendar Event action, because the only input this action accepts is a list of contacts for the event. You have to specify the dates/times/etc. separately.
In any case, the clipboard is usually the last, and least preferable, way to automate anything. It's usually much better to go direct.
To do that, though, you're going to have to step outside of Automator actions and into AppleScript.
The following script should do what you describe (although there are many possible gotchas, so be careful running it on production data). It asks for a date to move from, finds those events, asks for a date to move to, does some quick calculations then updates the event to the new date
The comments should be self-explanatory, but feel free to ask if it isn't clear.