diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-08-13 16:17:04 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-13 16:17:04 +0530 |
commit | 2732f9093e5d609db15426f157d580c9494b9f15 (patch) | |
tree | d6a606e8b0f8f3fb84b83c4c7df97afcc53aba86 /.github | |
parent | 5032696cec9da86c2ad97b9931e8d85feb18da0c (diff) |
github: set git config for PSL workflow (#1018)
user.name and user.email are not set by default in a standard Actions workflow
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/update_publicsuffix_data.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/update_publicsuffix_data.yml b/.github/workflows/update_publicsuffix_data.yml index 527f406f..c0f7103e 100644 --- a/.github/workflows/update_publicsuffix_data.yml +++ b/.github/workflows/update_publicsuffix_data.yml @@ -10,6 +10,11 @@ jobs: - name: Checkout uses: actions/checkout@v2 + - name: Initialize git config + run: | + git config user.name "GitHub Actions" + git config user.email noreply@github.com + - name: Download new publicsuffix data run: curl -L https://github.com/mozilla-mobile/android-components/raw/master/components/lib/publicsuffixlist/src/main/assets/publicsuffixes -o app/src/main/assets/publicsuffixes |