Skip to content

v2.6.2

Compare
Choose a tag to compare
@brendan-kellam brendan-kellam released this 14 Dec 00:03
· 198 commits to main since this release

Added

image
  • Added config support for filtering GitLab & GitHub repositories by topic by @brendan-kellam (#121). E.g.,:
{
    "$schema": "./schemas/v2/index.json",
    "repos": [
        {
            "type": "github",
            "orgs": [
                "sourcebot-dev"
            ],
            // Include repositories in `sourcebot-dev` that have at least one of these topics.
            "topics": [
                "hacktoberfest",
                "advent_of_code"
            ],
            "exclude": {
                // Explicitly exclude a topic from being indexed.
                "topics": [
                    "TypeScript"
                ]
            }
        }
    }
}

Changed

  • Stale repositories are now automatically deleted from the index. This can be configured via settings.autoDeleteStaleRepos in the config by @brendan-kellam (#128). E.g.,:
{
    "$schema": "./schemas/v2/index.json",
    "settings": {
        // Automatically delete stale repositories from the index. Defaults to true.
        "autoDeleteStaleRepos": true
    },
    ...
}

Full Changelog: v2.6.1...v2.6.2