From 4423be9e71f70d0d8b251748ed46dca573c5a31d Mon Sep 17 00:00:00 2001 From: Sawyer Date: Thu, 30 May 2024 09:21:40 -0700 Subject: [PATCH] Add codeowners file --- CODEOWNERS | 1 + template-only-bin/install-template.sh | 1 + template-only-bin/update-template.sh | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 00000000..af7101db --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +@navapbc/platform-frontend \ No newline at end of file diff --git a/template-only-bin/install-template.sh b/template-only-bin/install-template.sh index 09187890..e47b20dc 100755 --- a/template-only-bin/install-template.sh +++ b/template-only-bin/install-template.sh @@ -26,3 +26,4 @@ rm .github/workflows/template-only-* rm -rf .github/ISSUE_TEMPLATE rm -rf docs/decisions/template rm docs/decisions/template.md +rm CODEOWNERS diff --git a/template-only-bin/update-template.sh b/template-only-bin/update-template.sh index 8ddb74c7..237627e9 100755 --- a/template-only-bin/update-template.sh +++ b/template-only-bin/update-template.sh @@ -38,7 +38,8 @@ echo "Applying patch" EXCLUDE_OPT="--exclude=.github/workflows/template-only-* \ --exclude=.github/ISSUE_TEMPLATE \ --exclude=docs/decisions/template.md \ - --exclude=docs/decisions/template" + --exclude=docs/decisions/template" \ + --exclude=CODEOWNERS git apply $EXCLUDE_OPT --allow-empty template-application-nextjs/patch echo "Saving new template version to .template-application-nextjs"