Skip to content

Extract Google Play reviews #20

Extract Google Play reviews

Extract Google Play reviews #20

Workflow file for this run

name: Extract Google Play reviews
on:
workflow_dispatch:
push:
branches: ["main"]
paths: ["raw-data/applist.json"]
schedule:
- cron: '29 18 * * *'
permissions:
contents: write
pull-requests: write
jobs:
extract-play-data:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Extract Reviews
run: |
mkdir -p raw-data/reviews
cd script
python ExtractReviews.py
- name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Add new JSON files"
commit_options: '--no-verify'
file_pattern: 'raw-data/*.json raw-data/reviews/*.json'