-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (29 loc) · 954 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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'