-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed git user creds to github-actions bot
- Loading branch information
1 parent
6fdbba7
commit b860bbc
Showing
1 changed file
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,8 +57,8 @@ jobs: | |
|
||
- name: Set up Git | ||
run: | | ||
git config --global user.name "pybamm user" | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
- name: Test template generation | ||
run: nox -s template-tests | ||
|
@@ -99,8 +99,8 @@ jobs: | |
|
||
- name: Set up Git | ||
run: | | ||
git config --global user.name "pybamm user" | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
- name: Check if the documentation can be built | ||
run: nox -s docs | ||
|
@@ -174,6 +174,11 @@ jobs: | |
uv pip install copier jinja2-time | ||
copier copy . . --trust --defaults | ||
- name: Set up Git | ||
run: | | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
- name: Check if the documentation can be built | ||
working-directory: ./pybamm-example-project | ||
run: | | ||
|