Every workflow on this page has a ready-to-use template in the cli-actions repo. Copy the template you need into
.github/workflows/ in your dbt repo and adapt it to your project.- Add Lightdash preview projects to pull requests
- Deploy dbt changes to your production Lightdash project
- Validate your Lightdash project on pull requests
- Compile your dbt project
- Refresh your Lightdash project
Set up secrets and credentials
The workflows read their credentials from repository secrets. Follow GitHub’s guide to using secrets in GitHub Actions to add each secret below to your dbt repo.If you already have a GitHub action for Lightdash, then you can use the same Lightdash secrets you created for your other action.
LIGHTDASH_API_KEYis a personal access token. Create one in Lightdash by going toSettings>Personal Access Tokens.

-
LIGHTDASH_PROJECTis the UUID for your project. For example, if your URL looks likehttps://app.lightdash.cloud/projects/3538ab33-dc90-aabb-bc00-e50bba3a5f69/tables, then3538ab33-dc90-45f0-aabb-e50bba3a5f69is yourLIGHTDASH_PROJECT. -
LIGHTDASH_URLishttps://eu1.lightdash.cloudorhttps://app.lightdash.cloudfor Starter customers, or something likehttps://your_company.lightdash.cloudfor dedicated instances. If you self-host, this should be your own custom domain.
DBT_PROFILES secret with the warehouse connection dbt should use. The refresh workflow doesn’t need it.
DBT_PROFILES tips:
- You might be able to copy a bunch of the information from your local
profiles.ymlfile. You can see what’s in there by typingcat ~/.dbt/profiles.ymlin your terminal. - If you have a separate
prodanddevprofile, you probably want to use the information from yourprodprofile for your GitHub action. - If you want to have different connection settings depending on the user that opened the pull request (dev profiles), then check out this guide.
DBT_PROFILES secret.
BigQuery
BigQuery
BigQuery OAuth:Step 1: create a secret called Step 2: create another secret called More info in dbt’s profiles docs: https://docs.getdbt.com/reference/warehouse-profiles/bigquery-profile#service-account-file
GOOGLE_APPLICATION_CREDENTIALSCreate a service account with the role BigQuery User. Add the service account credentials (the JSON file) that you want to use for your GitHub action. It should look something like this:DBT_PROFILESCopy-paste this template into the secret and fill out the details.This will always use this project connection in your GitHub actions. If you want your preview projects to have different connection settings depending on the user that opened the pull request (dev profiles), then see what you need to add to your secret in this guide.Postgres
Postgres
Postgres profile configuration:More info in dbt’s profiles docs: https://docs.getdbt.com/reference/warehouse-profiles/postgres-profile#profile-configurationThis will always use this project connection in your GitHub actions. If you want your preview projects to have different connection settings depending on the user that opened the pull request (dev profiles), then see what you need to add to your secret in this guide.
Redshift
Redshift
Redshift password-based authentication:More info in dbt’s profiles docs: https://docs.getdbt.com/reference/warehouse-profiles/redshift-profile#password-based-authenticationThis will always use this project connection in your GitHub actions. If you want your preview projects to have different connection settings depending on the user that opened the pull request (dev profiles), then see what you need to add to your secret in this guide.
Snowflake
Snowflake
User / Password authentication:More info in dbt’s profiles docs: https://docs.getdbt.com/reference/warehouse-profiles/snowflake-profile#user—password-authenticationThis will always use this project connection in your GitHub actions. If you want your preview projects to have different connection settings depending on the user that opened the pull request (dev profiles), then see what you need to add to your secret in this guide.
DataBricks
DataBricks
Set up a DataBricks target:More info in dbt’s profiles docs: https://docs.getdbt.com/reference/warehouse-profiles/bigquery-profile#service-account-jsonThis will always use this project connection in your GitHub actions. If you want your preview projects to have different connection settings depending on the user that opened the pull request (dev profiles), then see what you need to add to your secret in this guide.
Use a CLI config file instead of environment variables
If you prefer to authenticate the Lightdash CLI with itsconfig.yaml file instead of environment variables, copy the full contents of your local ~/.config/lightdash/config.yaml into a CLI_CONFIG secret, then add this step to your workflow before the Lightdash CLI step:
Add previews to pull requests
If you’ve connected Lightdash to GitHub, you can setup agithub action and get Lightdash to create new dynamic preview projects automatically when a new pull request is created, and it will automatically delete the preview project when the pull request is closed or merged.
Create preview workflow
Go to your repo, click onActions menu, and click on Configure

New workflow, then select setup a workflow yourself.

Start commit
Do the same with this close-preview.yml file.
Use developer credentials
When developing in dbt, you typically have a different set of credentials and dataset/schema than when you are running in production. Here are two options on how to set them up based on the developer that opened the Pull Request.If you use dbt cloud IDE to create commits and pull requests you need a few extra steps. We need to add a step in the GitHub action to fetch the user that created the pull request.When copying the following templates, you should replace
${{ github.actor }} with ${{steps.get_pr_creator.outputs.result}}.Use profile targets
Update yourDBT_PROFILES to have 1 target per developer. The target name should be their GitHub username.
--target flag for the lightdash start-preview command.
Use Github environments
Setup a GitHub environment for each developer where the secrets are specifically for them. The environment name should be their GitHub username. Then, update your GitHub action to use the username as the environment.Use dbt cloud schema
If you are using a continuous integration job in dbt cloud, you can use the schema that is created by dbt cloud (dbt_cloud_pr_<job_id>_<pr_id>) for your preview project.
First we need to add an environment variable to your profile.yml file that will be used by dbt to connect to the correct schema.
dataset instead of schema.
Then we need to add a step in the GitHub action to fetch the pull request id.
1234. You will need to replace this with the actual job id.
You’re done!
Everytime you create a new pull request, a Lightdash preview project with your branch name will be created on your organization. You will see this link as a github-actions bot comment in the pull request conversation. Everytime you make a change to that branch, the preview environment will get updated. Once you close or merge your pull request, the preview project will get deleted. You can see the log on yourGithub actions page:

Deploy changes to Lightdash
If you’ve connected Lightdash to GitHub, you can use a github action to deploy your project automatically whenever new changes get merged to your main branch. This is the easiest way to keep Lightdash in sync with your changes to dbt.Create deploy workflow
Go to your repo, click onActions menu.
If you don’t have any GitHub actions, you’ll just need to click on Configure

New workflow, then select setup a workflow yourself.

deploy-lightdash.yml
And commit this to your repo by clicking on Start commit.
You’re done!
Everytime you merge a change to your repo, on themain branch, it will automatically deploy your new config into your Lightdash projects
You can see the log on the Github actions page

Validate your Lightdash project
The lightdash-validate.yml workflow runslightdash validate on every pull request and checks that your changes don’t break any charts or dashboards in your Lightdash project. It comments the validation results on the pull request, and the comment is informational, so it doesn’t block merging.
Create validate workflow
Create a new workflow in your repo, just like you did for the preview workflow, and copy in this lightdash-validate.yml file. Every time someone opens or updates a pull request, the workflow validates your project against the changes and posts the results as a comment on the pull request. If you want validation to block merging instead, see validating a preview environment.Compile your dbt project
The compile.yml workflow runslightdash compile on every pull request and fails if there are any errors that would break your Lightdash project. For example, a metric that references a dimension that doesn’t exist.
Create compile workflow
Create a new workflow in your repo, just like you did for the preview workflow, and copy in this compile.yml file.If you only use a subset of your dbt models in Lightdash, then you’ll want to specify that subset in the workflow’s compile step here.For example, to only compile models with the tag
lightdash, you would change this line to: run: lightdash compile --select tag:lightdash --project-dir "$PROJECT_DIR" --profiles-dir . --profile prod || lightdash compile --select tag:lightdash --project-dir "$PROJECT_DIR" --profiles-dir .Refresh your Lightdash project
The refresh.yml workflow is an alternative to deploying changes. Instead of compiling your dbt project in the workflow using yourDBT_PROFILES secret, it runs lightdash refresh on every merge to your main branch, and Lightdash compiles your project server-side using the connection settings saved in your project.
Your Lightdash project must be connected to a remote git repository for
lightdash refresh to work, since Lightdash pulls your dbt code from that repository.Create refresh workflow
Create a new workflow in your repo, just like you did for the preview workflow, and copy in this refresh.yml file. This workflow only needs theLIGHTDASH_API_KEY, LIGHTDASH_PROJECT, and LIGHTDASH_URL secrets.
Not sure whether to deploy or refresh? Read about the differences between the two commands in the CLI reference.