add workflow for aoc script

This commit is contained in:
Bhupesh-V 2023-12-02 19:07:23 +05:30
parent 8d9b7a9d34
commit 98db840054
3 changed files with 39 additions and 1 deletions

37
.github/workflows/aoc.yml vendored Normal file
View 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
View File

View File

@ -1,4 +1,5 @@
praw
feedparser
pyyaml
ruamel.yaml
ruamel.yaml
requests