Reminder for Game Night #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- name: Run email script | |
run: python scripts/send_email_Game_Night.py | |
name: Reminder for Game Night | |
'on': | |
schedule: | |
- cron: 0 9 5 11 * | |
workflow_dispatch: {} |