Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filter down repository webook events to reduce spam in Discord #17

Merged
merged 4 commits into from
Nov 4, 2023
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.4.2
terraform_version: 1.5.0

- name: Terraform Init
id: init
Expand Down
1 change: 0 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ in
python310Packages.pre-commit-hooks
sops
ssh-to-age
terraform
];

KUSTOMIZE_PLUGIN_HOME = pkgs.buildEnv {
Expand Down
63 changes: 33 additions & 30 deletions terraform/github/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

82 changes: 0 additions & 82 deletions terraform/github/repositories.tf

This file was deleted.

13 changes: 13 additions & 0 deletions terraform/github/repository.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module "github_repository" {
source = "../modules/github_repository"
for_each = var.repositories
name = each.key
description = each.value.description
topics = each.value.topics
homepage_url = each.value.homepage_url
visibility = each.value.visibility
collaborators = each.value.collaborators
has_discussions = each.value.has_discussions
has_pages = each.value.has_pages
is_archived = each.value.is_archived
}
Loading