2024-01-01 20:00:47 +05:30
|
|
|
name: r/developersIndia Showcase Sunday Thread
|
2022-08-19 23:04:21 +05:30
|
|
|
|
|
|
|
on:
|
2023-09-17 19:10:41 +05:30
|
|
|
schedule:
|
2024-01-01 20:00:47 +05:30
|
|
|
# Run at 3:25 AM UTC (8:55 AM IST) every day
|
|
|
|
- cron: '25 3 * * *'
|
2022-08-19 23:04:21 +05:30
|
|
|
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
|
2024-01-01 20:00:47 +05:30
|
|
|
- name: Create Showcase Sunday Thread
|
2023-02-09 17:11:05 +05:30
|
|
|
env:
|
|
|
|
REDDIT_CLIENT_ID: ${{ secrets.REDDIT_CLIENT_ID }}
|
|
|
|
REDDIT_CLIENT_SECRET: ${{ secrets.REDDIT_CLIENT_SECRET }}
|
|
|
|
REDDIT_PASSWORD: ${{ secrets.REDDIT_PASSWORD }}
|
2024-01-01 20:00:47 +05:30
|
|
|
REDDIT_USERNAME: ${{ secrets.REDDIT_USERNAME }}
|
2023-02-09 17:09:22 +05:30
|
|
|
run: |
|
2024-01-01 20:00:47 +05:30
|
|
|
cd showcase-sunday
|
2023-02-09 17:18:19 +05:30
|
|
|
python main.py
|