-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (39 loc) · 1.24 KB
/
update_gas_prices.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
38
39
40
41
42
43
44
45
46
name: ⛽️ Update Gas Prices from DRETT
on:
schedule:
- cron: "0 */6 * * 6,0"
- cron: "*/30 * * * 4,5"
push:
branches:
- main
workflow_dispatch:
permissions: write-all
jobs:
update-gas-prices:
runs-on: ubuntu-latest
name: ⛽️ Update Gas Prices from DRETT
steps:
- name: 📀 Checks Repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: 🐍 Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: requirements.txt
- name: 📦 Install project requirements
run: pip install -r requirements.txt
- name: 🛢️ Export data to file, add history and publish on Twitter
env:
CONSUMER_KEY: ${{ secrets.CONSUMER_KEY }}
CONSUMER_SECRET: ${{ secrets.CONSUMER_SECRET }}
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
ACCESS_TOKEN_SECRET: ${{ secrets.ACCESS_TOKEN_SECRET }}
run: python update_gas_prices.py
- name: 📎 Commit gas information with history
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main