Update action-runner.ts

needed to return promise for proper artifact chaining
This commit is contained in:
Anirban Kar 2024-11-30 03:00:53 +05:30 committed by GitHub
parent 4fb64800d3
commit 5add317b1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -100,6 +100,7 @@ export class ActionRunner {
.catch((error) => {
console.error('Action failed:', error);
});
return this.#currentExecutionPromise;
}
async #executeAction(actionId: string, isStreaming: boolean = false) {