Skip to content

Commit

Permalink
Merge pull request #2849 from dbt-labs/patkearns/env-var-updates-github
Browse files Browse the repository at this point in the history
classical vs fine-grained github tokens
  • Loading branch information
patkearns10 authored Feb 13, 2023
2 parents 1fa565b + 6a4b35d commit 94f1e77
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion website/docs/docs/build/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,11 @@ packages:
# use this format when accessing your repository via a github application token
- git: "https://{{env_var('DBT_ENV_SECRET_GIT_CREDENTIAL')}}@github.com/dbt-labs/awesome_repo.git" # git HTTPS URL
# use this format when accessing your repository via a personal access token
# use this format when accessing your repository via a classical personal access token
- git: "https://{{env_var('DBT_ENV_SECRET_GIT_CREDENTIAL')}}@github.com/dbt-labs/awesome_repo.git" # git HTTPS URL
# use this format when accessing your repository via a fine-grained personal access token (username sometimes required)
- git: "https://GITHUB_USERNAME:{{env_var('DBT_ENV_SECRET_GIT_CREDENTIAL')}}@github.com/dbt-labs/awesome_repo.git" # git HTTPS URL
```

</File>
Expand Down

0 comments on commit 94f1e77

Please sign in to comment.