initial commit

This commit is contained in:
2026-03-14 20:56:04 +01:00
commit 9b1aa393b3
38 changed files with 1517 additions and 0 deletions

43
github/repositories.tf Normal file
View File

@@ -0,0 +1,43 @@
resource "github_repository" "osm-blame" {
allow_auto_merge = false
allow_merge_commit = true
allow_rebase_merge = true
allow_squash_merge = true
allow_update_branch = false
archive_on_destroy = null
archived = false
auto_init = false
delete_branch_on_merge = false
description = "CLI tool inspired by git blame to determine the last modification tag by tag for an OSM element"
etag = "W/\"4fd676b7eb39a4b737792e7d6f70b95ba4515c3b81eafdd968fb229c7db5f316\""
fork = false
gitignore_template = null
has_discussions = false
has_downloads = true
has_issues = true
has_projects = true
has_wiki = true
homepage_url = ""
ignore_vulnerability_alerts_during_read = null
is_template = false
license_template = null
merge_commit_message = "PR_TITLE"
merge_commit_title = "MERGE_MESSAGE"
name = "osm-blame"
source_owner = ""
source_repo = ""
squash_merge_commit_message = "COMMIT_MESSAGES"
squash_merge_commit_title = "COMMIT_OR_PR_TITLE"
topics = ["openstreetmap", "openstreetmap-api", "osm"]
visibility = "public"
vulnerability_alerts = false
web_commit_signoff_required = false
security_and_analysis {
secret_scanning {
status = "disabled"
}
secret_scanning_push_protection {
status = "disabled"
}
}
}