minor cosmetic changes and prepare next release
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-08-30 20:19:08 +02:00
parent 0f441b26d1
commit 3f67ba1895
7 changed files with 21 additions and 6 deletions

View File

@ -0,0 +1,15 @@
resource "gitea_org" "test_org" {
name = "test-org"
}
resource "gitea_repository" "org_repo" {
username = gitea_org.test_org.name
name = "org-test-repo"
}
resource "gitea_git_hook" "org_repo_post-receive" {
name = "post-receive"
user = gitea_org.test_org.name
repo = gitea_repository.org_repo.name
content = file("${path.module}/post-receive.sh")
}