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 aaea49e commit 76bf0d3Copy full SHA for 76bf0d3
apps/runner/src/services/runner.service.ts
@@ -257,7 +257,7 @@ export class RunnerService {
257
newItems = triggerItems.slice(0, 1)
258
// on the first (non test) run, store all the existing IDs so we don't use them (critical for items without createdAt)
259
if (!workflowTrigger.lastId && !opts?.reRunItems) {
260
- for (const newItem of triggerItems) {
+ for (const newItem of triggerItems.slice(1)) {
261
try {
262
await this.workflowUsedIdService.createOne({
263
workflow: workflowTrigger.workflow,
0 commit comments