GitHub

The Woven GitHub App is what enables silent observability — it watches your repositories for schema and model changes without interrupting developers.

Once installed, it automatically detects migrations, dbt models, and schema files, and sends non-intrusive alerts to Slack whenever changes are merged.

To accomplish this, Woven needs to be integrated in all the GitHub repo(s) where data schemas (e.g. ORMs, Proto/Avro, dbt, etc.) are defined.

GitHub apps need to be installed or approved by your company's GitHub admin. If you do not have the necessary permissions, you can still request an install and wait for your admin to approve.

Woven requires GitHub Actions enabled in all repositories. This enables Woven to detect schema changes within your GitHub environment and only send metadata to Woven's servers.

Reach out to us if you cannot use GitHub actions - we can help set Woven up in your CI stack.

How to Install

  • Go to app.woven.dev/github to initiate the installation. You will be asked to login to Woven.

  • Choose "All repositories", or just the ones where data schemas are defined.

  • Complete installation or send to admin for approval.

What to Expect

After installation:

  • Woven will set a few Actions Variables and Secret for your CI to communicate to Woven's servers.

  • You’ll see an auto-generated configuration PR with detected projects and dialects

  • Once merged, Woven silently tracks schema evolution in every pull request

  • You’ll start receiving digest notifications in Slack (after Slack setup)

If your project uses nonstandard frameworks (like SQLAlchemy), you may need to setup your application runtime to extract schemas. Reach out to us for help.

What's in the configuration PR?

The PR has two configuration files:

🧩 opendapi.config.yaml

Defines what projects and integrations to include in observability.

  • Woven auto-detects your schema source integrations in the repositories and configures them. Supported integrations include Activerecord, Prisma, Protobuf, SqlAlchemy, Alembic, and Liquibase. Some integrations like SqlAlchemy may expect your application runtime to be setup to extract schema

  • By default, Woven includes all projects in your repositories. You can include/exclude specfic projects or specific models.

Here is an example.

🗂️ .github/workflows/opendapi_ci.yaml

Creates GitHub Actions workflow to extract schemas from the application code. Only metadata is sent to Woven's servers.

  • Runs on GitHub actions in your GitHub account.

  • You can modify this file as needed to update runners, etc.

After review, merge the PR — this activates silent observability for the selected projects.

Last updated

Was this helpful?