There was an error while loading. Please reload this page.
1 parent bb304b1 commit 08f9812Copy full SHA for 08f9812
1 file changed
.github/workflows/transifex-pull.yml
@@ -63,6 +63,19 @@ jobs:
63
env:
64
TX_TOKEN: ${{ secrets.TX_TOKEN }}
65
- run: ./transifex-util.py delete_obsolete_files --language ru --project-slug python-newest --version ${{ matrix.version }}
66
+ - name: Debug fetched files
67
+ run: |
68
+ set -euxo pipefail
69
+ echo "== git status =="
70
+ git status --short --ignored
71
+ echo "== untracked files =="
72
+ git ls-files -o --exclude-standard
73
+ echo "== ignored files =="
74
+ git ls-files -oi --exclude-standard
75
+ echo "== worktree diff =="
76
+ git diff --name-status -- . ':!transifex-util.py'
77
+ echo "== cached diff =="
78
+ git diff --cached --name-status -- . ':!transifex-util.py'
79
- name: Set up Git
80
run: |
81
git config --local user.email github-actions@github.com
0 commit comments