Skip to content

Commit

Permalink
Configure git user globally
Browse files Browse the repository at this point in the history
I want this to affect test repos
  • Loading branch information
jennybc committed Jul 4, 2023
1 parent cdb7ce6 commit b43f180
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:

- name: git config
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "[email protected]"
git config --global user.name "$GITHUB_ACTOR"
git config --global user.email "[email protected]"
- uses: r-lib/actions/check-r-package@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:

- name: git config
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "[email protected]"
git config --global user.name "$GITHUB_ACTOR"
git config --global user.email "[email protected]"
- name: Test coverage
run: |
Expand Down

0 comments on commit b43f180

Please sign in to comment.