Skip to content

Commit 2610644

Browse files
authored
Update README.md (#28)
* Add a line about the token generated in the workflow * Hardcode a user and provide an explanation as it is not used by GitHub
1 parent b7c7639 commit 2610644

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,14 @@ your own proxy. You'll need to add a
138138
[personal access token](https://github.com/settings/tokens) as a secret
139139
environment variable, as well as configure
140140
[GOPRIVATE](https://go.dev/ref/mod#private-modules).
141+
You can also directly used the token provided by [GitHub](https://docs.github.com/fr/enterprise-cloud@latest/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow) in the workflow.
142+
You can define anything as username in the URL, it is not taken into account by GitHub.
141143

142144
```yaml
143145
- name: Configure git for private modules
144146
env:
145147
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
146-
run: git config --global url."https://YOUR_GITHUB_USERNAME:${TOKEN}@github.com".insteadOf "https://github.com"
148+
run: git config --global url."https://user:${TOKEN}@github.com".insteadOf "https://github.com"
147149
```
148150

149151
```yaml

0 commit comments

Comments
 (0)