diff --git a/.github/workflows/sync-weblate.yml b/.github/workflows/sync-weblate.yml index 56857ff..754f612 100644 --- a/.github/workflows/sync-weblate.yml +++ b/.github/workflows/sync-weblate.yml @@ -13,8 +13,12 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: Debug Repository State + - name: List Weblate Commits + id: weblate-commits run: | - git fetch origin - git branch -a - git log --oneline \ No newline at end of file + git fetch origin + COMMITS=$(git log --grep="Weblate" main --format=%H) + echo "these are the commits $COMMITS" + BR=$(git branch -a) + echo "there are the branches $BR" + \ No newline at end of file