dosubot[bot] commented on issue #8181:
URL: 
https://github.com/apache/incubator-devlake/issues/8181#issuecomment-2469865048

   <!-- Answer -->
   To configure tasks to run in parallel within a stage in the DevLake 
configuration file, you need to define a single stage with multiple tasks in a 
2D array format. Each stage is represented by an array, and tasks within the 
same stage run in parallel. Here is an example configuration for running a 
GitLab task and a Jira task in parallel within a single stage:
   
   ```json
   [
       [
           {
               "plugin": "jira",
               "options": {
                   "boardId": 8,
                   "connectionId": 1
               }
           },
           {
               "plugin": "gitlab",
               "options": {
                   "connectionId": 1,
                   "projectId": 116***98
               }
           }
       ]
   ]
   ```
   
   In this configuration, both the Jira and GitLab tasks will run in parallel 
because they are defined within the same stage (the same inner array) 
<sup>[[1]](https://github.com/apache/incubator-devlake-website/blob/main/docs/Configuration/AdvancedMode.md)</sup>.
   
   
   <!-- Dosu Comment Footer -->
   *To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to