From 1e8d47ba641a2e0acd478340bd44c20833e37ba7 Mon Sep 17 00:00:00 2001 From: Mitchell Syer Date: Sun, 18 Feb 2024 10:06:37 -0500 Subject: [PATCH] [SKIP CI] Keep `repo.json` file when creating repo --- .github/scripts/commit-repo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/commit-repo.sh b/.github/scripts/commit-repo.sh index f0c830d..ef86001 100755 --- a/.github/scripts/commit-repo.sh +++ b/.github/scripts/commit-repo.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -rsync -a --delete --exclude .git --exclude .gitignore ../main/repo/ . +rsync -a --delete --exclude .git --exclude .gitignore --exclude repo.json ../main/repo/ . git config --global user.email "github-actions[bot]@users.noreply.github.com" git config --global user.name "github-actions[bot]" git status