From 200e923fd7c93d711412856d26d6ea82197f4652 Mon Sep 17 00:00:00 2001 From: ExpensiveKoala Date: Sat, 28 Sep 2024 23:31:11 -0700 Subject: [PATCH] Don't error if there are no changes to set tracking --- .github/workflows/update-set-implementation-lists.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index 275e1daf2b1..cc27189efb9 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -201,5 +201,5 @@ jobs: git config user.email github-actions@github.com # Stage the Set-implementation-list.md file, commit, then push git add ./wiki/* - git commit -m "Update Set-implementation-list.md" + git commit -m "Update Set-implementation-list.md" || exit 0 git push