Skip to content

Commit

Permalink
♻️ Add repository dispatch events to all workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandChowdhary committed Dec 19, 2020
1 parent fe883d9 commit 6fb329a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/helpers/workflows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ name: Static Site CI
on:
schedule:
- cron: "${workflowSchedule.staticSite || STATIC_SITE_CI_SCHEDULE}"
repository_dispatch:
types: [static_site]
workflow_dispatch:
jobs:
release:
Expand Down Expand Up @@ -277,6 +279,8 @@ name: Updates CI
on:
schedule:
- cron: "${workflowSchedule.updates || UPDATES_CI_SCHEDULE}"
repository_dispatch:
types: [updates]
workflow_dispatch:
jobs:
release:
Expand Down Expand Up @@ -305,6 +309,8 @@ name: Uptime CI
on:
schedule:
- cron: "${workflowSchedule.uptime || UPTIME_CI_SCHEDULE}"
repository_dispatch:
types: [uptime]
workflow_dispatch:
jobs:
release:
Expand Down

0 comments on commit 6fb329a

Please sign in to comment.