Skip to content

Commit 541968f

Browse files
authored
fix: add git configuration to weekly download (#318)
1 parent 29ee325 commit 541968f

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/weekly_download.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,14 @@ jobs:
2929
- name: Download packages from trusted sources
3030
run: |
3131
uv run --no-project dependencies/scripts/download_packages.py download pypi || echo 'Failed to download trusted pypi packages'
32-
uv run --no-project dependencies/scripts/download_packages.py donwload npm || echo 'Failed to download trusted npm packages'
33-
32+
uv run --no-project dependencies/scripts/download_packages.py download npm || echo 'Failed to download trusted npm packages'
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)