From 40533689f0929a98e03027330d3d044d8f568a3b Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Fri, 26 Jun 2020 13:11:11 +0200 Subject: [PATCH] GitHub Actions - Template Cleanup - fixed adding files to git --- .github/workflows/template-cleanup.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/template-cleanup.yml b/.github/workflows/template-cleanup.yml index 8b86b2c..39272d5 100644 --- a/.github/workflows/template-cleanup.yml +++ b/.github/workflows/template-cleanup.yml @@ -62,7 +62,8 @@ jobs: run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" - git commit -m "Template cleanup" -a + git add . + git commit -m "Template cleanup" # Push changes - name: Push changes