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>
This commit is contained in:
parent
5032696cec
commit
2732f9093e
1 changed files with 5 additions and 0 deletions
|
@ -10,6 +10,11 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
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
|
- 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
|
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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue