From 2732f9093e5d609db15426f157d580c9494b9f15 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 13 Aug 2020 16:17:04 +0530 Subject: 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 --- .github/workflows/update_publicsuffix_data.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.github') 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 -- cgit v1.2.3