diff --git a/docs/site/content/docs/guides/ci-vendors/github-actions.mdx b/docs/site/content/docs/guides/ci-vendors/github-actions.mdx index 22ad6f739c5ea..f5a0c2b317afa 100644 --- a/docs/site/content/docs/guides/ci-vendors/github-actions.mdx +++ b/docs/site/content/docs/guides/ci-vendors/github-actions.mdx @@ -257,7 +257,7 @@ Go to your GitHub repository settings and click on the **Secrets** and then **Ac -Create a new repository variable (click the **Variables** tab) called `TURBO_TEAM` and set it to your team slug - the part after `vercel.com/` in [your Team URL](https://vercel.com/d?to=%2F%5Bteam%5D%2F%7E%2Fsettings&title=Find+Team+URL). For example, the slug for `vercel.com/acme` is `acme`. +Create a new repository variable (click the **Variables** tab) called `TURBO_TEAM` and set it to your team slug - the part after `vercel.com/` in [your Team URL](https://vercel.com/d?to=%2F%5Bteam%5D%2F%7E%2Fsettings&title=Find+Team+URL). For example, the slug for `vercel.com/acme` is `acme`. Using a repository variable rather than a secret will keep GitHub Actions from @@ -294,6 +294,10 @@ jobs: +## Using Remote Caching with Reusable Workflows + +For information on passing secrets to reusable workflows, see [GitHub's documentation on passing secrets to nested workflows](https://docs.github.com/en/actions/how-tos/reuse-automations/reuse-workflows#passing-secrets-to-nested-workflows). + ## Remote Caching with GitHub actions/cache The following steps show how you could use [actions/cache](https://github.com/actions/cache) to cache your monorepo artifacts on GitHub.