diff --git a/.github/linters/.megalinter.yml b/.github/linters/.megalinter.yml index 9d91fc9..62c8ff9 100644 --- a/.github/linters/.megalinter.yml +++ b/.github/linters/.megalinter.yml @@ -1,6 +1,6 @@ --- # Configuration file for MegaLinter -# See all available variables at https://megalinter.io/configuration/ and in linters documentation +# See all available variables at https://megalinter.io/latest/config-file/ and in linters documentation DISABLE: - PYTHON diff --git a/.github/renovate.json5 b/.github/renovate.json5 index df311a6..f1849be 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -41,16 +41,18 @@ extractVersion: "^(?v?\\d+\\.\\d+\\.\\d+)$", versioning: "regex:^v?(?\\d+)(\\.(?\\d+)\\.(?\\d+))?$", }, - // Disable github-actions minimum release age for our own actions. + // Group github-actions dependencies in a single PR. { + groupName: "Dependencies for github-actions", matchManagers: ["github-actions"], - matchPackageNames: ["daniel-mizsak/workflows"], - minimumReleaseAge: null, }, - // Group github-actions dependencies in a single PR. + // Group self-owned github-actions dependencies in a single PR. { - groupName: "Dependencies for github-actions", + groupName: "Dependencies for github-actions under daniel-mizsak/workflows", matchManagers: ["github-actions"], + matchPackageNames: ["daniel-mizsak/workflows"], + minimumReleaseAge: null, + schedule: ["* 0-5 * * *"], // Daily before 6am. }, // Group pep621 dependencies in a single PR. { diff --git a/Justfile b/Justfile index 72ce849..7a7a33b 100644 --- a/Justfile +++ b/Justfile @@ -14,7 +14,7 @@ clean: htmlcov \ megalinter-reports \ .venv - find . -name ".DS_Store" -type f -delete + find . -type f -name ".DS_Store" -delete find . -type d -name "__pycache__" -exec rm -r {} + [group("lifecycle")] diff --git a/zensical.toml b/zensical.toml index c0ec78f..fb2d51e 100644 --- a/zensical.toml +++ b/zensical.toml @@ -46,18 +46,13 @@ "content.code.copy", "navigation.footer", "navigation.indexes", + "navigation.instant", "navigation.tabs", "navigation.tabs.sticky", "navigation.top", "search.highlight", "search.suggest", ] - # Palette toggle for automatic mode - [[project.theme.palette]] - media = "(prefers-color-scheme)" - toggle.icon = "lucide/sun-moon" - toggle.name = "Switch to light mode" - # Palette toggle for light mode [[project.theme.palette]] media = "(prefers-color-scheme: light)"