🏷️dbt Description Suggestions

Overview

The dbt Description Suggestions feature enables teams to propose and manage changes to dbt resource descriptions directly from Euno's interface. When you suggest a description change, Euno automatically creates a GitHub pull request with the updated YAML file, allowing your team to review, approve, and merge changes through your standard Git workflow.

This feature bridges the gap between metadata management in Euno and source control in your dbt repository, ensuring that documentation improvements flow seamlessly into your codebase.

circle-info

Note: in order to use this feature you must first enable the Github integration

How It Works

Proposing a Description Change

  1. Navigate to Resource: Open any dbt resource (model, source, etc.) in the Data Model screen

  2. Open Sidepane: Click on the resource to view its details in the right sidepane

  3. About Tab: The description section will show a "Propose description" button for eligible resources

  4. Edit Description: Click the button to open a markdown editor

  5. Submit Proposal: Review your changes and click "Submit"

Euno will then:

  1. Create a deterministic branch name based on the resource and user (e.g., euno/dbt-description/dbt_model/customers-a1b2c3d4)

  2. Fetch the current schema YAML file from the repository

  3. Update the description field for the specified resource

  4. Commit the change to the branch

  5. Create a pull request (or update existing PR if one already exists)

  6. Post a comment on the PR with the proposed description

Pull Request Details

Branch Naming Convention:

PR Title:

PR Body:

Commit Message:

Managing Suggestions

Viewing Active Suggestions

When a suggestion is pending:

  • The resource sidepane shows "Proposal pending approval" badge

  • A "View PR" link provides direct access to the GitHub pull request

  • Hovering shows creation date and status

Updating a Suggestion

To update an existing proposal:

  1. Click the "Proposal pending approval" badge

  2. Edit the description in the markdown editor

  3. Submit the updated proposal

Euno will:

  • Commit the new changes to the same branch

  • Post a new comment on the PR with the updated description

  • Preserve the PR history

After PR is Merged

Once your team merges the pull request:

  1. The resource sidepane shows "Changes approved, waiting for crawl"

  2. During the next crawl, Euno detects the updated description

  3. The resource metadata is updated in Euno

  4. The suggestion status is automatically cleared

Limitations

  • Only supports GitHub (GitLab and Bitbucket not yet supported)

  • One active proposal per user per resource

  • Column descriptions must exist in the same schema file as the resource

Last updated