-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add event reminder workflows and scripts
- Loading branch information
1 parent
e116e7e
commit b95cd48
Showing
9 changed files
with
189 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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: {} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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_Hike_to_Gile_Mountain.py | ||
name: Reminder for Hike to Gile Mountain | ||
'on': | ||
schedule: | ||
- cron: 0 0 21 9 * | ||
workflow_dispatch: {} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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_Hikes_with_The_Chair.py | ||
name: Reminder for Hikes with The Chair | ||
'on': | ||
schedule: | ||
- cron: 0 0 28 9 * | ||
workflow_dispatch: {} |
21 changes: 21 additions & 0 deletions
21
.github/workflows/reminder_Mid-term_Wine_and_Cheese_Gathering.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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_Mid-term_Wine_and_Cheese_Gathering.py | ||
name: Reminder for Mid-term Wine and Cheese Gathering | ||
'on': | ||
schedule: | ||
- cron: 0 0 21 10 * | ||
workflow_dispatch: {} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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_Pumpkin_Carving.py | ||
name: Reminder for Pumpkin Carving | ||
'on': | ||
schedule: | ||
- cron: 0 0 30 10 * | ||
workflow_dispatch: {} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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_Research_Extravaganza.py | ||
name: Reminder for Research Extravaganza | ||
'on': | ||
schedule: | ||
- cron: 0 0 20 9 * | ||
workflow_dispatch: {} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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_Weekly_Bagel_Brunch.py | ||
name: Reminder for Weekly Bagel Brunch | ||
'on': | ||
schedule: | ||
- cron: 0 0 27 9 * | ||
workflow_dispatch: {} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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_Weekly_Wednesday_Woccoms.py | ||
name: Reminder for Weekly Wednesday Woccoms | ||
'on': | ||
schedule: | ||
- cron: 0 0 25 9 * | ||
workflow_dispatch: {} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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_Winter_Holiday_Party.py | ||
name: Reminder for Winter Holiday Party | ||
'on': | ||
schedule: | ||
- cron: 0 0 15 12 * | ||
workflow_dispatch: {} |