feat(provider): add repository label resource

Closes #16
This commit is contained in:
Julien Dessaux 2025-05-29 01:32:07 +02:00
parent 03a83d1874
commit e6fcd21481
Signed by: adyxax
GPG key ID: F92E51B86E07177E
6 changed files with 318 additions and 1 deletions

View file

@ -0,0 +1,7 @@
resource "forgejo_repository_label" "main" {
color = "0000ff"
description = "blue label"
name = "test"
owner = "adyxax"
repository = "example"
}