From ea1b1f490bd2040a059c3b916bf4f0eecbaa8e92 Mon Sep 17 00:00:00 2001 From: Jacob Wallraff Date: Wed, 23 Oct 2024 01:52:11 -0700 Subject: [PATCH] Fix secret name typo (#52835) Co-authored-by: Sophie <29382425+sophietheking@users.noreply.github.com> --- content/actions/sharing-automations/reusing-workflows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/sharing-automations/reusing-workflows.md b/content/actions/sharing-automations/reusing-workflows.md index ccf28a589850..030a13226ac1 100644 --- a/content/actions/sharing-automations/reusing-workflows.md +++ b/content/actions/sharing-automations/reusing-workflows.md @@ -361,7 +361,7 @@ jobs: workflowB-calls-workflowC: uses: different-org/example-repo/.github/workflows/C.yml@main secrets: - repo-token: ${{ secrets.person_access_token }} # pass just this secret + repo-token: ${{ secrets.personal_access_token }} # pass just this secret ``` {% endraw %}