in app/routes/api.jobs.create-with-key.tsx [168:185]
id: uuidv4(),
title,
description: description || "",
status: "pending",
createdAt: new Date(),
updatedAt: new Date(),
branch: branch || undefined,
author: apiKeyAuthor,
repository: repository || undefined,
environment: environment || undefined,
secrets: secrets || undefined,
};
const jobStore = getJobStore();
await jobStore.createJob(job);
// Create credentials object for job processor
const credentials = {