v2.1.0
What's Changed
Added Gitea support in #45 for both Gitea Cloud and self-hosted Gitea instances. To get started using Gitea, use the gitea type in your config.json:
Full Changelog: v2.0.2...v2.1.0
Added Gitea support in #45 for both Gitea Cloud and self-hosted Gitea instances. To get started using Gitea, use the gitea type in your config.json:
Full Changelog: v2.0.2...v2.1.0
{ "$schema": "https://raw.githubusercontent.com/sourcebot-dev/sourcebot/main/schemas/v2/index.json", "repos": [ { "type": "gitea", // note: url only necessary for self-hosted instances "url": "https://gitea.example.com", // Index individual repos "repos": [ "my_org/repo1" ], // Index all repos in a org "orgs": [ "my_org" ], // Index all repos owned by a user "users": [ "my_user" ], // Exclude repos "exclude": { "forks": true, "archived": true, "repos": { "my_org/repo2" } } } ] }