Scraping US gas prices #1098
This file contains hidden or 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
| # Hourly scraping | |
| name: Scraping US gas prices | |
| # Controls when the action will run. | |
| on: | |
| #push: | |
| # branches: main | |
| schedule: | |
| - cron: '0 10 * * *' | |
| jobs: | |
| autoscrape: | |
| # The type of runner that the job will run on | |
| runs-on: macos-latest | |
| # Load repo and install R | |
| #steps: | |
| #- uses: actions/checkout@master | |
| #- uses: r-lib/actions/setup-r@master | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: '4.2.2' | |
| # Set-up R | |
| - name: Install packages | |
| run: | | |
| R -e 'install.packages("httr")' | |
| R -e 'install.packages("dplyr")' | |
| R -e 'install.packages("jsonlite")' | |
| # Run R script | |
| - name: Fuel Prices | |
| run: Rscript whatsthegasprice.R | |
| # Add new files in data folder, commit along with other modified files, push | |
| - name: Commit files | |
| run: | | |
| git config --local user.name github-actions | |
| git config --local user.email "[email protected]" | |
| git add data/* | |
| git commit -am "GH ACTION Autorun $(date)" | |
| git push origin main | |
| env: | |
| REPO_KEY: ${{secrets.GITHUB_TOKEN}} | |
| username: github-actions |