Skip to content

Pause Events

Pause Events #1

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
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
git add .github/workflows/
git commit -m "Remove event reminder scripts"
git push