From 8d05da87db822c6637606034f547737132cd6b8a Mon Sep 17 00:00:00 2001 From: rafsaf Date: Sun, 15 Oct 2023 19:27:35 +0200 Subject: [PATCH] fix update script --- scripts/gh_update_dbs_with_pr.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/gh_update_dbs_with_pr.sh b/scripts/gh_update_dbs_with_pr.sh index fbae302..149906e 100755 --- a/scripts/gh_update_dbs_with_pr.sh +++ b/scripts/gh_update_dbs_with_pr.sh @@ -16,7 +16,8 @@ else git config user.email "<>" git status git branch $branch - git commit -am 'update docker-compose.dbs.yml file' + git add . + git commit -m 'update docker-compose.dbs.yml file' git push -u origin $branch gh pr create -B main -H $branch --title 'update docker-compose.dbs.yml file' --body 'Created by Github action' fi \ No newline at end of file