summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-10-03 18:33:00 +0200
committerGitHub <noreply@github.com>2020-10-03 18:33:00 +0200
commit5e0d2b2b79b1532deff130fde24a7fc9a5cbce0e (patch)
tree0a6e0e305d2b497924b349d7c4104992a6e71dd4
parent5097f166289562bcd7e25c351545ebfa0ac85e31 (diff)
parent6479093245b259830faad7799568bf9683c86266 (diff)
Merge pull request #1256 from nextcloud/tilosp-patch-1
The update-sh should also commit file removals
-rw-r--r--.github/workflows/update-sh.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/update-sh.yml b/.github/workflows/update-sh.yml
index 2a675f15..f24eca03 100644
--- a/.github/workflows/update-sh.yml
+++ b/.github/workflows/update-sh.yml
@@ -19,7 +19,7 @@ jobs:
run: |
git config --local user.email "workflow@github.com"
git config --local user.name "GitHub Workflow"
- git add ./*
+ git add -A
git commit -m "Runs update.sh" || echo "Nothing to update"
- name: Push changes
uses: ad-m/github-push-action@master