github sourcebot-dev/sourcebot v2.1.0

latest releases: v2.5.0, v2.4.4, v2.4.3...
one month ago

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

Don't miss a new sourcebot release

NewReleases is sending notifications on new releases.