Upload files to "expected_workflows"
Some checks failed
CI Workflow / Containerize the Flow (push) Has been cancelled
CI Workflow / Testing the Flow (push) Has been cancelled

This commit is contained in:
admin user 2025-05-23 01:49:22 +00:00
parent 7f8c57bd22
commit 12aa38b027
3 changed files with 6 additions and 3 deletions

View File

@ -6,6 +6,7 @@ import json
import datetime
import re
import jmespath
from temporalio import workflow
# Configure logging
logging.basicConfig(level=logging.INFO,
@ -16,7 +17,7 @@ logger = logging.getLogger(__name__)
class test_repo_test_branch:
@temporalio.workflow.run
async def run(self, root_inputs: Dict[str, Any]) -> Dict[str, Any]:
await temporalio.workflow.sleep(0)
await workflow.sleep(0)
workflow_info = temporalio.workflow.info()
workflow_output: Dict[str, Any] = {
"workflow_id": workflow_info.workflow_id,

View File

@ -6,6 +6,7 @@ import json
import datetime
import re
import jmespath
from temporalio import workflow
# Configure logging
logging.basicConfig(level=logging.INFO,
@ -16,7 +17,7 @@ logger = logging.getLogger(__name__)
class test_repo_test_branch:
@temporalio.workflow.run
async def run(self, root_inputs: Dict[str, Any]) -> Dict[str, Any]:
await temporalio.workflow.sleep(0)
await workflow.sleep(0)
workflow_info = temporalio.workflow.info()
workflow_output: Dict[str, Any] = {
"workflow_id": workflow_info.workflow_id,

View File

@ -6,6 +6,7 @@ import json
import datetime
import re
import jmespath
from temporalio import workflow
# Configure logging
logging.basicConfig(level=logging.INFO,
@ -16,7 +17,7 @@ logger = logging.getLogger(__name__)
class test_repo_test_branch:
@temporalio.workflow.run
async def run(self, root_inputs: Dict[str, Any]) -> Dict[str, Any]:
await temporalio.workflow.sleep(0)
await workflow.sleep(0)
workflow_info = temporalio.workflow.info()
workflow_output: Dict[str, Any] = {
"workflow_id": workflow_info.workflow_id,