Skip to content

Reminder for Game Night #16

Reminder for Game Night

Reminder for Game Night #16

jobs:
send_email:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: pip install pandas markdown
- env:
GMAIL_PASSWORD: ${{ secrets.GMAIL_PASSWORD }}
name: Run email script
run: python scripts/send_email_Game_Night.py
name: Reminder for Game Night
'on':
schedule:
- cron: 0 0 6 11 *
workflow_dispatch: {}