Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@yottahmd
Copy link
Collaborator

@yottahmd yottahmd commented Jun 11, 2025

Summary:

  • Add support for defining multiple DAGs in a single YAML file using --- separator
  • Local DAGs can be referenced by name within the same file
  • Particularly useful for parallel execution workflows

Changes:

  • Parse multiple DAG definitions from single YAML file
  • Update UI to display local DAGs in separate tabs
  • Add documentation

Example:

name: main-workflow
steps:
  - name: process
    run: processor
    parallel: ["item1", "item2"]

---

name: processor
steps:
  - name: validate
    command: echo "Processing $1"

@yottahmd yottahmd merged commit 96be9c0 into main Jun 11, 2025
4 checks passed
@yottahmd yottahmd deleted the 994-multiple-dag branch June 11, 2025 12:03
@codecov
Copy link

codecov bot commented Jun 11, 2025

Codecov Report

Attention: Patch coverage is 78.89908% with 23 lines in your changes missing coverage. Please review.

Project coverage is 63.48%. Comparing base (9f9699a) to head (06ecb43).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
internal/digraph/loader.go 78.89% 15 Missing and 8 partials ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1005      +/-   ##
==========================================
+ Coverage   63.44%   63.48%   +0.04%     
==========================================
  Files          90       90              
  Lines       13086    13164      +78     
==========================================
+ Hits         8302     8357      +55     
- Misses       4006     4021      +15     
- Partials      778      786       +8     
Files with missing lines Coverage Δ
internal/digraph/dag.go 68.78% <ø> (ø)
internal/digraph/loader.go 66.90% <78.89%> (+4.28%) ⬆️

... and 1 file with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 9f9699a...06ecb43. Read the comment docs.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant