diff --git a/.github/workflows/cron-bookingReminder.yml b/.github/workflows/cron-bookingReminder.yml index ff6384bc59cfaa..b12c8d2f8acb10 100644 --- a/.github/workflows/cron-bookingReminder.yml +++ b/.github/workflows/cron-bookingReminder.yml @@ -1,11 +1,12 @@ name: Cron - bookingReminder on: + workflow_dispatch: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs "At every 15th minute." (see https://crontab.guru) - - cron: "*/15 * * * *" + # schedule: + # # Runs "At every 15th minute." (see https://crontab.guru) + # - cron: "*/15 * * * *" jobs: cron-bookingReminder: env: diff --git a/.github/workflows/cron-changeTimeZone.yml b/.github/workflows/cron-changeTimeZone.yml index 5a988dc9f4f806..55374352ba48db 100644 --- a/.github/workflows/cron-changeTimeZone.yml +++ b/.github/workflows/cron-changeTimeZone.yml @@ -1,11 +1,12 @@ name: Cron - changeTimeZone on: + workflow_dispatch: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs "At every full hour." (see https://crontab.guru) - - cron: "0 * * * *" + # schedule: + # # Runs "At every full hour." (see https://crontab.guru) + # - cron: "0 * * * *" jobs: cron-scheduleEmailReminders: diff --git a/.github/workflows/cron-checkSmsPrices.yml b/.github/workflows/cron-checkSmsPrices.yml index 3275314adb2ddd..3a9fc672ee37a0 100644 --- a/.github/workflows/cron-checkSmsPrices.yml +++ b/.github/workflows/cron-checkSmsPrices.yml @@ -1,11 +1,12 @@ name: Cron - checkSmsPrices on: + workflow_dispatch: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs “every minute” (see https://crontab.guru) - - cron: "* * * * *" + # schedule: + # # Runs “every minute” (see https://crontab.guru) + # - cron: "* * * * *" jobs: cron-checkSmsPrices: env: diff --git a/.github/workflows/cron-downgradeUsers.yml b/.github/workflows/cron-downgradeUsers.yml index d5c2984b36d5c5..a049197c53b04f 100644 --- a/.github/workflows/cron-downgradeUsers.yml +++ b/.github/workflows/cron-downgradeUsers.yml @@ -4,9 +4,9 @@ on: workflow_dispatch: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs "At 00:00 on day-of-month 1." (see https://crontab.guru) - - cron: "0 0 1 * *" + # schedule: + # # Runs "At 00:00 on day-of-month 1." (see https://crontab.guru) + # - cron: "0 0 1 * *" jobs: cron-downgradeUsers: env: diff --git a/.github/workflows/cron-monthlyDigestEmail.yml b/.github/workflows/cron-monthlyDigestEmail.yml index d8ff0716069aca..5b95169f41baa4 100644 --- a/.github/workflows/cron-monthlyDigestEmail.yml +++ b/.github/workflows/cron-monthlyDigestEmail.yml @@ -1,11 +1,12 @@ name: Cron - monthlyDigestEmail on: + workflow_dispatch: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs on the 28th, 29th, 30th and 31st of every month (see https://crontab.guru) - - cron: "59 23 28-31 * *" + # schedule: + # # Runs on the 28th, 29th, 30th and 31st of every month (see https://crontab.guru) + # - cron: "59 23 28-31 * *" jobs: cron-monthlyDigestEmail: env: diff --git a/.github/workflows/cron-scheduleEmailReminders.yml b/.github/workflows/cron-scheduleEmailReminders.yml index aecb91400f9bde..3a9ec8113feabe 100644 --- a/.github/workflows/cron-scheduleEmailReminders.yml +++ b/.github/workflows/cron-scheduleEmailReminders.yml @@ -3,11 +3,12 @@ name: Cron - scheduleEmailReminders on: + workflow_dispatch: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs "At every 15th minute." (see https://crontab.guru) - - cron: "*/15 * * * *" + # schedule: + # # Runs "At every 15th minute." (see https://crontab.guru) + # - cron: "*/15 * * * *" jobs: cron-scheduleEmailReminders: env: diff --git a/.github/workflows/cron-scheduleSMSReminders.yml b/.github/workflows/cron-scheduleSMSReminders.yml index c2fd9c5608abf4..0be10ad2adf285 100644 --- a/.github/workflows/cron-scheduleSMSReminders.yml +++ b/.github/workflows/cron-scheduleSMSReminders.yml @@ -1,11 +1,12 @@ name: Cron - scheduleSMSReminders on: + workflow_dispatch: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs "At every 15th minute." (see https://crontab.guru) - - cron: "*/15 * * * *" + # schedule: + # # Runs "At every 15th minute." (see https://crontab.guru) + # - cron: "*/15 * * * *" jobs: cron-scheduleSMSReminders: env: diff --git a/.github/workflows/cron-scheduleWhatsappReminders.yml b/.github/workflows/cron-scheduleWhatsappReminders.yml index 194b50e4e1b27b..6c6d6811441afe 100644 --- a/.github/workflows/cron-scheduleWhatsappReminders.yml +++ b/.github/workflows/cron-scheduleWhatsappReminders.yml @@ -1,11 +1,12 @@ name: Cron - scheduleWhatsappReminders on: + workflow_dispatch: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs "At every 15th minute." (see https://crontab.guru) - - cron: "*/15 * * * *" + # schedule: + # # Runs "At every 15th minute." (see https://crontab.guru) + # - cron: "*/15 * * * *" jobs: cron-scheduleWhatsappReminders: env: diff --git a/.github/workflows/cron-stale-issue.yml b/.github/workflows/cron-stale-issue.yml index 031aa869e2edcd..cfb30c3a9e3dd5 100644 --- a/.github/workflows/cron-stale-issue.yml +++ b/.github/workflows/cron-stale-issue.yml @@ -7,9 +7,9 @@ permissions: on: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs "At 00:00." every day (see https://crontab.guru) - - cron: "0 0 * * *" + # schedule: + # # Runs "At 00:00." every day (see https://crontab.guru) + # - cron: "0 0 * * *" workflow_dispatch: jobs: stale: diff --git a/.github/workflows/cron-syncAppMeta.yml b/.github/workflows/cron-syncAppMeta.yml index 38ea311415fe78..cd3f397699865e 100644 --- a/.github/workflows/cron-syncAppMeta.yml +++ b/.github/workflows/cron-syncAppMeta.yml @@ -4,9 +4,9 @@ on: workflow_dispatch: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs "At 00:00 on day-of-month 1." (see https://crontab.guru) - - cron: "0 0 1 * *" + # schedule: + # # Runs "At 00:00 on day-of-month 1." (see https://crontab.guru) + # - cron: "0 0 1 * *" jobs: cron-syncAppMeta: env: diff --git a/.github/workflows/cron-webhooks-triggers.yml b/.github/workflows/cron-webhooks-triggers.yml index ea6bc39d75b535..916a66adcdc47f 100644 --- a/.github/workflows/cron-webhooks-triggers.yml +++ b/.github/workflows/cron-webhooks-triggers.yml @@ -1,11 +1,12 @@ name: Cron - webhookTriggers on: + workflow_dispatch: # "Scheduled workflows run on the latest commit on the default or base branch." # — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule - schedule: - # Runs “every minute” (see https://crontab.guru) - - cron: "* * * * *" + # schedule: + # # Runs “every minute” (see https://crontab.guru) + # - cron: "* * * * *" jobs: cron-webhookTriggers: env: