Scrape Gold Account Price #4883
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: Scrape Gold Account Price | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v2 # checkout the repository content to github runner | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' # install the python version needed | |
cache: 'pip' | |
- name: install python packages | |
run: pip install -r requirements.txt | |
- name: run Python | |
run: python scrape.py | |
- name: add comment | |
if: env.MESSAGE != '' | |
uses: peter-evans/create-or-update-comment@v2 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
issue-number: 3 | |
body: ${{ env.MESSAGE }} | |
- name: Auto Commit | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: ':bento: Update Data' |