Skip to content

Commit 60d30d1

Browse files
author
Sarah Edwards
authored
Apply suggestions from code review
1 parent fce45d2 commit 60d30d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/actions/reference/workflow-syntax-for-github-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ jobs:
619619
uses: docker://gcr.io/cloud-builders/gradle
620620
```
621621

622-
#### Example using action inside a different private repository as the workflow
622+
#### Example using action inside a different private repository than the workflow
623623

624624
Your workflow must checkout the private repository and reference the action locally.
625625

@@ -633,7 +633,7 @@ jobs:
633633
with:
634634
repository: octocat/my-private-repo
635635
ref: v1.0
636-
token: ${{ secrets.GITHUB_PERSONAL_ACCESS_TOKEN }}
636+
token: ${{ secrets.GITHUB_TOKEN }}
637637
path: ./.github/actions/my-private-repo
638638
- name: Run my action
639639
uses: ./.github/actions/my-private-repo/my-action

0 commit comments

Comments
 (0)