Skip to content

Commit 8c5e6e7

Browse files
authored
Disable tx pull on pull_request
1 parent 322f8bd commit 8c5e6e7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/update.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,11 @@ jobs:
7575
run: sudo apt update -y && sudo apt install gettext tree -y
7676

7777
- name: Pull translations
78-
run: make pull TX_CLI_DIR=/usr/local/bin
78+
run: |
79+
make tx-config
80+
if [ "${{ github.event_name }}" != 'pull_request' ]; then
81+
make pull -o tx-config TX_CLI_DIR=/usr/local/bin
82+
fi
7983
env:
8084
TX_TOKEN: ${{ secrets.TX_TOKEN }}
8185

0 commit comments

Comments
 (0)