mirror of
https://github.com/developersIndia/deviras.git
synced 2025-01-03 14:01:46 +05:30
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
|
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
|