Skip to content

Commit

Permalink
Merge pull request #279 from smoors/private_repos
Browse files Browse the repository at this point in the history
add docs on private repos
  • Loading branch information
boegel authored Sep 10, 2024
2 parents 6f4eb2b + 4faaa01 commit 7df9a3f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -813,3 +813,26 @@ The job manager can run on a different machine than the event handler, as long a
For information on how to make pull requests and let the bot build software, see
[the bot section of the EESSI documentation](https://www.eessi.io/docs/bot/).
# Private target repos
Both Git and Curl need to have access to the target repo. A convenient way to
access a private repo via a Github token is by adding the following lines to
your `~/.netrc` and `~/.curlrc` files:
```
# ~/.netrc
machine github.com
login oauth
password <Github token>
machine api.github.com
login oauth
password <Github token>
```
```
# ~/.curlrc
--netrc
```

0 comments on commit 7df9a3f

Please sign in to comment.