Skip to content

v2.1.0

Compare
Choose a tag to compare
@brendan-kellam brendan-kellam released this 23 Oct 03:09
· 82 commits to main since this release

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:

{
    "$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"
                }
            }
        }
    ]
}

Full Changelog: v2.0.2...v2.1.0