Overview
Collate 1.12 introduces Git Sink, a workflow capability that automatically synchronizes metadata changes in Collate to a Git repository. Many organizations are adopting a metadata as code approach. Just like application code, metadata benefits from version control, review workflows, and historical tracking. Git Sink captures metadata updates in Collate and commits them to GitHub. Teams can maintain version history, review governance changes, and integrate metadata management with existing engineering workflows. Collate remains the main interface for managing metadata while Git stores the version history.Why Git Sink Matters
Metadata changes frequently as data platforms evolve. Teams document tables, add tags, create test cases, and update governance classifications. Without version control, these updates are hard to track. Git Sink helps organizations:- Track metadata history
- Review governance updates through Git workflows
- Integrate metadata with DevOps processes
- Manage metadata using version control
How Git Sink Works
Git Sink uses the Collate workflow engine. A workflow listens for metadata events and writes those changes to a Git repository. Examples of events include:- Creating a test case
- Updating a table description
- Adding tags or tiers
- Updating glossary assignments
Creating a Git Sink Workflow
Follow these steps to create a workflow that captures metadata events and syncs them to Git.Note:
Limitation: Currently, Git Sink workflows only support Start and End nodes. You cannot add additional intermediate nodes beyond the Git Sink node itself.
-
From the left navigation bar, navigate to Governance > Workflows. Click Create Workflow.

-
Enter a Workflow Name and Description, then click Save and Next.

-
Drag the Start node onto the canvas and fill in the following fields:
- Data Asset: Select the entity types the workflow monitors (for example,
Table). - Data Asset Filter (Optional): Add filters to narrow which assets the workflow acts on.
- Trigger Type: Choose Event Based to trigger when an asset changes, or Periodic Batch to run on a schedule.

- Data Asset: Select the entity types the workflow monitors (for example,
- Click Save.
-
Drag the Git Sink node onto the canvas and connect it to the Start node. Enter the GitHub connection details — for full configuration options, see GitHub Configuration below.


- Click Save.
-
Drag an End node onto the canvas and connect it to the Git Sink node.

-
Click Save, then toggle the workflow to Active.

GitHub Configuration

- Overwrite external changes
- Preserve existing changes
- Fail on conflict
Repository Structure
Collate stores synced metadata in GitHub as YAML files. The structure reflects the hierarchy of the data platform. Example- Fully qualified name
- Columns
- Tags and classifications
- Descriptions
- Timestamps and user information
Example Workflow
- A Git Sink workflow is active.
- A user updates a table in Collate.
- The update triggers a metadata event.
- The workflow commits the change to GitHub.
- The repository stores the updated metadata in YAML format.