Skip to content

Commit 03ec55f

Browse files
committed
fix: add git configuration to weekly download
1 parent 29ee325 commit 03ec55f

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/weekly_download.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,13 @@ jobs:
3030
run: |
3131
uv run --no-project dependencies/scripts/download_packages.py download pypi || echo 'Failed to download trusted pypi packages'
3232
uv run --no-project dependencies/scripts/download_packages.py donwload npm || echo 'Failed to download trusted npm packages'
33-
33+
- name: Configure git
34+
35+
- name: Download packages from trusted sources
36+
run: |
37+
git config user.name "github-actions[bot]"
38+
git config user.email "github-actions[bot]@users.noreply.github.com"
39+
3440
- name: Push changes to repo
3541
run: |
3642
git add .

0 commit comments

Comments
 (0)