diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-08-01 16:10:47 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-08-01 16:24:05 +0300 |
commit | 4014dc5e8fb0194a88c16f6ee2db7a6682ffab52 (patch) | |
tree | 4289952fd652eb63b75ea1fdbf4180809d694e73 /examples | |
parent | fix the lately broken --repo flag (diff) | |
download | cgitize-4014dc5e8fb0194a88c16f6ee2db7a6682ffab52.tar.gz cgitize-4014dc5e8fb0194a88c16f6ee2db7a6682ffab52.zip |
support mirroring all of user's repositories
Diffstat (limited to 'examples')
-rw-r--r-- | examples/cgitize.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/cgitize.toml b/examples/cgitize.toml index b029328..19b7056 100644 --- a/examples/cgitize.toml +++ b/examples/cgitize.toml @@ -20,6 +20,12 @@ owner = "Your Name" # CGITIZE_GITHUB_ACCESS_TOKEN environment variable. #access_token = "XXX" +[github.users.me] +name = "egor-tensin" +# To avoid directory name clashes with other repositories, you can specify a +# subdirectory to put that user's repositories to. +dir = "github-dir" + # Some random repositories hosted on GitHub: [github.repositories.lens] id = "ekmett/lens" @@ -36,6 +42,12 @@ id = "bobfang1992/pytomlpp" # environment variable). #username = "your-username" +[bitbucket.users.me] +name = "egor-tensin" +# To avoid directory name clashes with other repositories, you can specify a +# subdirectory to put that user's repositories to. +dir = "bitbucket-dir" + # Some random repositories hosted on Bitbucket: [bitbucket.repositories.cef] id = "chromiumembedded/cef" |