diff --git a/.github/workflows/daily-discovery.yml b/.github/workflows/daily-discovery.yml index af576853..30cafc73 100644 --- a/.github/workflows/daily-discovery.yml +++ b/.github/workflows/daily-discovery.yml @@ -91,7 +91,7 @@ jobs: echo "No new recommendations to commit" else git commit -m "chore: daily discovery ${{ steps.date.outputs.analysis_date }}" - git stash || true + git stash --include-untracked || true git pull --rebase origin ${{ github.ref_name }} git stash pop || true git push origin ${{ github.ref_name }} @@ -112,7 +112,7 @@ jobs: echo "No performance updates" else git commit -m "chore: update performance tracking ${{ steps.date.outputs.analysis_date }}" - git stash || true + git stash --include-untracked || true git pull --rebase origin ${{ github.ref_name }} git stash pop || true git push origin ${{ github.ref_name }} @@ -135,7 +135,7 @@ jobs: echo "No position updates" else git commit -m "chore: update positions ${{ steps.date.outputs.analysis_date }}" - git stash || true + git stash --include-untracked || true git pull --rebase origin ${{ github.ref_name }} git stash pop || true git push origin ${{ github.ref_name }}