Skip to content

Commit

Permalink
Create cancel_events.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremymanning authored Jul 17, 2024
1 parent 951aeed commit ca7faa3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cancel_events.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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

0 comments on commit ca7faa3

Please sign in to comment.