Edit main.yml to pull changes from HuggingFace
Browse files
.github/workflows/main.yml
CHANGED
|
@@ -15,7 +15,10 @@ jobs:
|
|
| 15 |
fetch-depth: 0
|
| 16 |
lfs: true
|
| 17 |
- name: Configure Git to use merge for pull
|
| 18 |
-
run:
|
|
|
|
|
|
|
|
|
|
| 19 |
- name: Pull latest changes from remote
|
| 20 |
env:
|
| 21 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
|
|
|
| 15 |
fetch-depth: 0
|
| 16 |
lfs: true
|
| 17 |
- name: Configure Git to use merge for pull
|
| 18 |
+
run: |
|
| 19 |
+
git config --global user.email "[email protected]"
|
| 20 |
+
git config --global user.name "Colin Lin"
|
| 21 |
+
git config pull.rebase false
|
| 22 |
- name: Pull latest changes from remote
|
| 23 |
env:
|
| 24 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|