Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions modules/fomantic/github/repositories.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
locals {
repos = {
Fomantic-UI = {
description = "Fomantic-UI is a community fork of Semantic-UI"
description = "Fomantic-UI is the official community fork of Semantic-UI"
homepage_url = "https://fomantic-ui.com"
topics = [
"ui", "css-framework", "semantic", "fork",
"fomantic", "fomantic-ui", "component-library"
"javascript", "css", "ui", "css-framework", "semantic", "fork",
"fomantic", "fomantic-ui", "component-library", "hacktoberfest"
]
has_downloads = true
has_issues = true
Expand Down Expand Up @@ -69,7 +69,7 @@ locals {
has_wiki = true
}
create-fomantic-icons = {
description = "Generate the icon.overrides and icon.html.eco files for Fomantic-UI (or Semantic-UI)"
description = "Generate the icon.variables and icon.html.eco files for Fomantic-UI (or Semantic-UI)"
homepage_url = ""
topics = [
"fomantic-ui", "semantic-ui", "fontawesome", "icons", "fomantic"
Expand Down Expand Up @@ -112,6 +112,17 @@ locals {
has_projects = false
has_wiki = false
}
Fomantic-UI-vscode-snippets = {
description = "Fomantic-UI Snippets for VS Code"
homepage_url = ""
topics = [
"fomantic-ui", "fomantic", "vscode", "snippets"
]
has_downloads = true
has_issues = true
has_projects = true
has_wiki = true
}
}
}

Expand Down
13 changes: 6 additions & 7 deletions vars.github.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ variable "github_team_repository_access" {
branding = "admin"
infrastructure = "push"
rfcs = "admin"
Fomantic-UI-vscode-snippets = "admin"
}
bots = {
Fomantic-UI = "push"
Expand All @@ -82,11 +83,10 @@ variable "github_members" {
description = "GitHub organisation members"
type = map(string)
default = {
hammy2899 = "admin" // organisation owner
y0hami = "admin" // organisation owner
prudho = "member"
ColinFrick = "member"
lubber-de = "admin"
exoego = "member"
ko2in = "member"

// bots
Expand All @@ -99,7 +99,7 @@ variable "github_member_teams" {
type = map(map(string))
default = {
admins = {
hammy2899 = "maintainer"
y0hami = "maintainer"
prudho = "member"
ColinFrick = "member"
lubber-de = "member"
Expand All @@ -108,12 +108,11 @@ variable "github_member_teams" {
fomanticbot = "member"
}
helpers = {
hammy2899 = "maintainer"
y0hami = "maintainer"
}
maintainers = {
hammy2899 = "maintainer"
exoego = "member"
ko2in = "member"
y0hami = "maintainer"
ko2in = "member"
}
}
}
Expand Down