Skip to content

Commit b4069ab

Browse files
Use GitHub Actions bot as the commit author for ccodwg-update
- Use user.name and user.email suggested in this GitHub discussion: https://github.com/actions/checkout/discussions/479 - Closes #31
1 parent 08fe5e8 commit b4069ab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/ccodwg-update/scripts/update-data.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
2-
git config --global user.name 'Jean-Paul R. Soucy'
3-
git config --global user.email 'jeanpaul.r.soucy@gmail.com'
2+
git config --global user.name 'github-actions[bot]'
3+
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
44
git clone --depth=1 https://jeanpaulrsoucy:$GH_PAT@github.com/ccodwg/CovidTimelineCanada.git /CovidTimelineCanada
55
cd /CovidTimelineCanada
66
export GITHUB_PAT=$GH_PAT

docker/ccodwg-update/scripts/update-plots.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
2-
git config --global user.name 'Jean-Paul R. Soucy'
3-
git config --global user.email 'jeanpaul.r.soucy@gmail.com'
2+
git config --global user.name 'github-actions[bot]'
3+
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
44
git clone --depth=1 https://jeanpaulrsoucy:$GH_PAT@github.com/ccodwg/CovidTimelineCanadaPlots.git /CovidTimelineCanadaPlots
55
cd /CovidTimelineCanadaPlots
66
export GITHUB_PAT=$GH_PAT

0 commit comments

Comments
 (0)