Reusable OpenTofu module for standardized GitHub repository management.
module "repository" {
source = "git::https://github.com/zunoser/tfmodule-gh-repo-kit.git?ref=v0.1.0"
name = "example"
description = "Example repository"
visibility = "public"
}Pin the module to a release tag. Renovate can then propose version updates to consumers.
Enter the Nix development shell and run the checks:
nix develop
scripts/checkReleases are Git tags created from main. Choose the next semantic version,
then create and push the tag:
git tag v0.1.0
git push origin v0.1.0