Skip to content

Pause Events

Pause Events #6

Workflow file for this run

name: Pause Events
on: workflow_dispatch
jobs:
remove_event_reminders:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Remove event scripts
run: |
rm -f .github/workflows/reminder_*.yml
rm -f scripts/send_email_*.py
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
git add .github/workflows/
git add scripts/
git commit -m "Remove event reminder scripts"
git push