mirror of
https://github.com/developersIndia/deviras.git
synced 2024-11-08 13:42:34 +05:30
add workflow for aoc script
This commit is contained in:
parent
8d9b7a9d34
commit
98db840054
37
.github/workflows/aoc.yml
vendored
Normal file
37
.github/workflows/aoc.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
name : r/developersIndia AoC leaderboard
|
||||
|
||||
on:
|
||||
schedule:
|
||||
# Every 2 hours”
|
||||
- cron: '0 */2 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python 3.10
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: "3.10"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||
- name: Change Titles
|
||||
env:
|
||||
REDDIT_CLIENT_ID: ${{ secrets.REDDIT_CLIENT_ID }}
|
||||
REDDIT_CLIENT_SECRET: ${{ secrets.REDDIT_CLIENT_SECRET }}
|
||||
REDDIT_PASSWORD: ${{ secrets.REDDIT_PASSWORD }}
|
||||
REDDIT_USERNAME: ${{ secrets.REDDIT_USERNAME }}
|
||||
AOC_SESSION_COOKIE: ${{ secrets.AOC_SESSION_COOKIE }}
|
||||
AOC_LEADERBOARD_CODE: ${{ secrets.AOC_LEADERBOARD_CODE }}
|
||||
REDDIT_POST_ID: ${{ secrets.REDDIT_POST_ID }}
|
||||
run: |
|
||||
cd aoc
|
||||
python main.py
|
0
aoc/__init__.py
Normal file
0
aoc/__init__.py
Normal file
@ -2,3 +2,4 @@ praw
|
||||
feedparser
|
||||
pyyaml
|
||||
ruamel.yaml
|
||||
requests
|
Loading…
Reference in New Issue
Block a user