Skip to content

Commit

Permalink
Update launch_events.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremymanning authored Jul 18, 2024
1 parent a43672e commit b08ff5c
Showing 1 changed file with 41 additions and 18 deletions.
59 changes: 41 additions & 18 deletions .github/workflows/launch_events.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,47 @@
name: Launch Events
on: workflow_dispatch

on:
workflow_dispatch:

jobs:
generate_event_reminders:
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: |
python -m pip install pandas
python -m pip install pyyaml
- name: Generate event reminder scripts
run: python generate_event_reminders.py
env:
GMAIL_PASSWORD: ${{ secrets.GMAIL_PASSWORD }}
- name: Checkout repository
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install pandas
python -m pip install pyyaml
- name: Generate event reminder scripts
run: python generate_event_reminders.py
env:
GMAIL_PASSWORD: ${{ secrets.GMAIL_PASSWORD }}

- name: Configure git
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Commit new workflows
run: |
git add .github/workflows/reminder_*.yml
git commit -m "Add event reminder workflows"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main

0 comments on commit b08ff5c

Please sign in to comment.