-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepos-unique.tf
36 lines (29 loc) · 1.02 KB
/
repos-unique.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module "repo_org_dot_github_dot_io" {
source = "./modules/repo"
name = "iconduit.github.io"
description = "The Iconduit website"
homepage_url = "https://iconduit.github.io"
pages_branch = "gh-pages"
ci_workflows = ["library"]
has_publish_package_workflow = false
has_publish_release_workflow = false
}
module "repo_demo" {
source = "./modules/repo"
name = "demo"
description = "Demonstrations of Iconduit's output"
homepage_url = "https://iconduit.github.io/demo"
pages_branch = "gh-pages"
ci_workflows = ["library"]
has_publish_package_workflow = false
has_publish_release_workflow = false
}
module "repo_renovate" {
source = "./modules/repo"
name = "renovate"
description = "Self-hosted Renovate for Iconduit"
homepage_url = "https://github.com/iconduit/renovate/actions/workflows/renovate.yml"
has_publish_package_workflow = false
has_publish_release_workflow = false
manage_renovate = false
}