5,439 questions
0
votes
0
answers
15
views
OptimisticLockingException when using multiInstanceLoopCharacteristics for parallel execution of subprocess
i have the following process definition i trie to execude on Camunda 7.24 / CibSeven 2.1 which currently logs during execution many OptimisticLockingException. i could already trace it down that it ...
Best practices
0
votes
6
replies
54
views
Need a Opinion on the workflow from Feature dev to staging test to prod run
the title is somewhat difficult i try to explain what i want the input from you all.
My current practice from a feature/bug development towards the codes journey to the production is following
I get ...
0
votes
0
answers
21
views
Why is the tool prompt provided after tool invocation in an MCP workflow?
I’m working with MCP server tools and have run into a question about the ordering of prompts and tool calls:
In my workflow I use a tool (for example split_task_raw) to decompose a task. After the ...
-1
votes
1
answer
45
views
Github composite outputs "suddenly" not propagating to the next job
I'm doing Infrastructure as Code for a project and it involves setting up the Azure infrastructure via Github workflow.
What i do in my composite is:
Create a resource group
Build bicep files
Run &...
0
votes
2
answers
51
views
How can I assign a specific job to a particular server in Snakemake with SLURM?
I am working with a complex pipeline in Snakemake running on an HPC cluster managed by SLURM. My workflow runs across multiple servers with varying capacities. While Snakemake's distribution of jobs ...
1
vote
1
answer
109
views
How to remove intermediate results after execution of the chord without blocking execution?
Here’s the pattern I want:
Dispatch multiple tasks in parallel.
Aggregate all their results into a final result.
Remove the intermediate results right after the chord result is ready, without ...
0
votes
1
answer
103
views
GCP Workflows: 2MB HTTP response limit vs 512KB variable limit - can I store large API responses?
I'm confused about GCP Workflows data size limits. The documentation states:
The maximum size of an HTTP response (if saved to a variable, the memory limit for variables applies): 2 MB
The maximum ...
0
votes
0
answers
78
views
GitHub Actions unexpected parse error when running Godot workflow
I am building a workflow using GitHub actions to automate test runs for my current Godot project. I have written two independent actions and one workflow which references them. Of these two actions - ...
0
votes
0
answers
90
views
n8n: Reddit Node Throws
I'm building a workflow in n8n (v1.100.1, Cloud) that reads a list of Reddit posts from a Google Sheet and posts a unique comment to each one in a loop.
The Goal:
The workflow should iterate through ...
0
votes
1
answer
83
views
Temporal Scalability
I am looking to use temporal to stitch my customers journey in an e-commerce platform.
The workflow is supposed to start when a user clicks on 'search', and supposed to end when the customer finally ...
0
votes
0
answers
87
views
Workflow variables updating on Oracle Apex 24
I am learning Oracle Apex 24, and creating a workflow ( created a human task / task definition ).
I am able to create parameters initialized once when the workflow started but they are read only for ...
0
votes
1
answer
33
views
Parallelize a batch of samples in Nextflow
I'm calling a process for the first available batch of maximum 20 samples that, in between, are filtered by size:
// aligned_bam_bai_pairs_ch is a channel of tuples(path, path)
...
0
votes
0
answers
26
views
Argo triggers another flow, and fails to return
I have an Argo flow, which, on one step, triggers another flow. The template is like that:
- name: child-trigger
inputs:
parameters:
- name: file-path
- name: wf-...
0
votes
0
answers
42
views
How can I schedule a Complete Python Project in Databricks
I have a simple Python project with the following structure:
root/
│── src/
│ ├── package_name/
│ │ ├── __init__.py
│ │ ├── main.py
│ │ ├── submodules1/
│ │ │ ├── ...
0
votes
0
answers
56
views
Automatic Github release on push, add changes before release
I have setup github workflow that's get triggered on push to main and creates release using marvinpinto/action-automatic-releases
Now, i would like to do one more step before the release, run other ...
0
votes
0
answers
380
views
Power Automate: 'foreach' error in Teams Action when sending Adaptive Card
When I try to use an action that connects with Teams, I get the following error:
The execution of template action 'Send_each_adaptive_card' failed: the result of the evaluation of 'foreach' expression ...
-1
votes
1
answer
56
views
When a file is downloaded in a specific folder , It should be emailed to me
So I am facing this problem where I have to download hundreds of files from Windchill, that are stored in a common drive folder on our server, so that everyone can access it. Then I have to copy and ...
0
votes
1
answer
111
views
Using Webhook Request Workflow extract email from the adaptive card and send an email to it
I need to setup a workflow in teams where the flow is
When a webhook request is received
Post the content as an adaptive card in a teams channel
And in the adaptive card there is a field called email,...
0
votes
0
answers
99
views
Trigger GitHub Actions Workflow on Pull Request Review Submission
I want to trigger a GitHub Actions workflow when a pull request review is submitted. However, I need to ensure that:
The workflow cannot be modified from within the pull request itself.
The workflow ...
0
votes
0
answers
42
views
How do I wake up the worker nodes when driver node is doing all the work?
I am running a very simple script in Databricks:
try:
spark.sql("""
DELETE FROM raw.{} WHERE databasename = '{}'""".format(raw_json, dbsourcename))
...
1
vote
1
answer
218
views
Xcode workflow returning error when using Flutter command
I have created a workflow with Xcode Cloud to compile (archive) and release my app to TestFlight when a new commit is pushed on master branch.
I created the workflow on Xcode, I gave permissions to ...
0
votes
0
answers
66
views
Github action to create a package not firing when release created
I'm trying to automatically create a package whenever I publish a release to my private repo, so that I can use that package as a private dependency in another project.
To this end I have a file at /....
0
votes
0
answers
258
views
Zoho Deluge Script Error: Variable Not Defined for Custom Function
I'm working on a custom function in Zoho CRM to calculate the total price of an order when a new record is created in a custom module called Orders. The function is triggered via a workflow rule. The ...
0
votes
2
answers
965
views
Databricks scheduling a workflow with different parameters for each schedule
I'm in Databricks, where I have a python notebook that takes a file from the landing, processes it and saves a delta table.
This notebook contains a parameter (time_prm) that allows me to do this ...
2
votes
1
answer
327
views
Set ouput of GitHub action workflow after using azure/login@v2 step
I faced a problem when I was trying to move from client secret to OIDC signing in using GitHub actions.
The code that I have currently:
on:
workflow_call:
secrets:
azure-credentials:
...