Extract Google Play reviews #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |