Skip to content
Closed
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
4 changes: 4 additions & 0 deletions src/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ locals {
}
}

# Managed files. Terraform overwrites these on every run, so repositories
# cannot diverge from the template - changes must be made upstream here.
# Contrast with seeded_files below; the only thing separating the two
# categories is which local a file is placed in.
files = {
".github/workflows/sanity_checks.yml" = {
content = file("templates/all/.github/workflows/sanity_checks.yml")
Expand Down
8 changes: 5 additions & 3 deletions src/templates/all/.cspell.config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---
## DO NOT EDIT!
# This file was provisioned by Terraform
# File origin: https://github.com/Arrow-air/tf-github/tree/main/src/templates/all/.cspell.config.yaml
## SEEDED FILE - this repository owns it.
# Terraform wrote this file once, when the repository was created, and will not
# update it again. Local changes are preserved. Edit it freely.
# Upstream default: https://github.com/Arrow-air/tf-github/tree/main/src/templates/all/.cspell.config.yaml
# Changing the upstream default affects newly created repositories only.

$schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
version: "0.2"
Expand Down
Loading