Skip to content

Commit

Permalink
Add git config into pkgdown workflow (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke committed Mar 8, 2021
1 parent eb733e8 commit 4b37d1e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ on:
push:
branches:
- master
- pkgdown
- "**pkgdown**"
pull_request:
branches:
- master
- rc-*
- rc-**


name: pkgdown
Expand Down Expand Up @@ -74,6 +74,11 @@ jobs:
stopifnot(length(warnings()) == 0)
shell: Rscript {0}

- name: Git Config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Build and Deploy Site
if: github.event_name == 'push'
env:
Expand Down

0 comments on commit 4b37d1e

Please sign in to comment.