Skip to content

Commit 2a5f13c

Browse files
committed
fix: add git config to update-demo workflow
1 parent cbbce26 commit 2a5f13c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/update-demo.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ jobs:
3939
with:
4040
python-version-file: "${{ github.workspace }}/cookiecutter-robust-python/.github/workflows/.python-version"
4141

42+
- name: Configure Git
43+
run: |
44+
git config user.name "github-actions[bot]"
45+
git config user.email "github-actions[bot]@users.noreply.github.com"
46+
4247
- name: Update Demo
4348
working-directory: "${{ github.workspace }}/cookiecutter-robust-python"
4449
run: "uvx nox -s 'update-demo(${{ inputs.demo_name }})' -- --branch-override ${{ github.head_ref }}"

0 commit comments

Comments
 (0)