diff --git a/.github/workflows/aks-auto-shutdown.yaml b/.github/workflows/aks-auto-shutdown.yaml index 30913ebf..d6436763 100644 --- a/.github/workflows/aks-auto-shutdown.yaml +++ b/.github/workflows/aks-auto-shutdown.yaml @@ -2,7 +2,7 @@ name: aks-auto-shutdown on: workflow_dispatch: schedule: - - cron: "0 20,23 * * *" # Every day at 20:00 and 23:00 GMT + - cron: "0 19,22 * * *" # Every day at 20:00 and 23:00 BST env: DEV_ENV: ${{ secrets.DEV_ENV }} permissions: diff --git a/.github/workflows/aks-auto-start.yaml b/.github/workflows/aks-auto-start.yaml index 2df3ea63..5301d444 100644 --- a/.github/workflows/aks-auto-start.yaml +++ b/.github/workflows/aks-auto-start.yaml @@ -2,7 +2,7 @@ name: aks-auto-start on: workflow_dispatch: schedule: - - cron: "30 6 * * 1-5" # Every weekday at 6:30am GMT + - cron: "30 5 * * 1-5" # Every weekday at 6:30am BST env: DEV_ENV: ${{ secrets.DEV_ENV }} diff --git a/.github/workflows/appgateway-auto-shutdown.yaml b/.github/workflows/appgateway-auto-shutdown.yaml index 5d744380..796ae30c 100644 --- a/.github/workflows/appgateway-auto-shutdown.yaml +++ b/.github/workflows/appgateway-auto-shutdown.yaml @@ -2,7 +2,7 @@ name: AppGateway-auto-shutdown on: workflow_dispatch: schedule: - - cron: "0 20,23 * * *" # Every day at 20:00 and 23:00 GMT + - cron: "0 19,22 * * *" # Every day at 20:00 and 23:00 BST env: DEV_ENV: ${{ secrets.DEV_ENV }} permissions: diff --git a/.github/workflows/appgateway-auto-start.yaml b/.github/workflows/appgateway-auto-start.yaml index 8704aee2..4435f048 100644 --- a/.github/workflows/appgateway-auto-start.yaml +++ b/.github/workflows/appgateway-auto-start.yaml @@ -2,7 +2,7 @@ name: AppGateway-auto-start on: workflow_dispatch: schedule: - - cron: "30 6 * * 1-5" # Every weekday at 6:30am GMT + - cron: "30 5 * * 1-5" # Every weekday at 6:30am BST env: DEV_ENV: ${{ secrets.DEV_ENV }} diff --git a/.github/workflows/auto-start-status-check.yaml b/.github/workflows/auto-start-status-check.yaml index 1ad22f49..3beb95b6 100644 --- a/.github/workflows/auto-start-status-check.yaml +++ b/.github/workflows/auto-start-status-check.yaml @@ -3,7 +3,7 @@ on: workflow_dispatch: pull_request: schedule: - - cron: "30 7 * * 1-5" # Every weekday at 7:30am GMT + - cron: "30 6 * * 1-5" # Every weekday at 7:30am BST env: GH_TOKEN: ${{ secrets.PLATFORM_USER_TOKEN }} SLACK_TOKEN: ${{ secrets.AUTO_SHUTDOWN_STATUS_APP_OAUTH_TOKEN }} diff --git a/.github/workflows/auto-stop-status-check.yaml b/.github/workflows/auto-stop-status-check.yaml index 0ae006e8..e0dab027 100644 --- a/.github/workflows/auto-stop-status-check.yaml +++ b/.github/workflows/auto-stop-status-check.yaml @@ -2,7 +2,7 @@ name: auto-stop-status-check on: workflow_dispatch: schedule: - - cron: "30 20,23 * * *" # Every day at 20:30 and 23:30 GMT + - cron: "30 19,22 * * *" # Every day at 20:30 and 23:30 BST env: GH_TOKEN: ${{ secrets.PLATFORM_USER_TOKEN }} permissions: diff --git a/.github/workflows/bastion-auto-shutdown.yaml b/.github/workflows/bastion-auto-shutdown.yaml index a3c80e9d..28bb3e9d 100644 --- a/.github/workflows/bastion-auto-shutdown.yaml +++ b/.github/workflows/bastion-auto-shutdown.yaml @@ -2,7 +2,7 @@ name: bastion-auto-shutdown on: workflow_dispatch: schedule: - - cron: "0 20,23 * * *" # Every day at 20:00 and 23:00 GMT + - cron: "0 19,22 * * *" # Every day at 20:00 and 23:00 BST env: DEV_ENV: ${{ secrets.DEV_ENV }} permissions: diff --git a/.github/workflows/bastion-auto-start.yaml b/.github/workflows/bastion-auto-start.yaml index ab02d04c..ffbb1b37 100644 --- a/.github/workflows/bastion-auto-start.yaml +++ b/.github/workflows/bastion-auto-start.yaml @@ -2,7 +2,7 @@ name: bastion-auto-start on: workflow_dispatch: schedule: - - cron: "30 6 * * 1-5" # Every weekday at 6:30am GMT + - cron: "30 5 * * 1-5" # Every weekday at 6:30am BST env: DEV_ENV: ${{ secrets.DEV_ENV }} diff --git a/.github/workflows/fetch-dashboard-data.yaml b/.github/workflows/fetch-dashboard-data.yaml index baad7ec1..72c7b63e 100644 --- a/.github/workflows/fetch-dashboard-data.yaml +++ b/.github/workflows/fetch-dashboard-data.yaml @@ -1,9 +1,9 @@ name: Update Dashboard Data on: - # Run daily at 7 AM UTC + # Run daily at 7 AM BST (6 AM UTC) schedule: - - cron: "0 7 * * *" + - cron: "0 6 * * *" # Allow manual triggering workflow_dispatch: diff --git a/.github/workflows/flexibleserver-auto-shutdown.yaml b/.github/workflows/flexibleserver-auto-shutdown.yaml index 1d6a1bb1..82812c08 100644 --- a/.github/workflows/flexibleserver-auto-shutdown.yaml +++ b/.github/workflows/flexibleserver-auto-shutdown.yaml @@ -2,7 +2,7 @@ name: flexible-server-auto-shutdown on: workflow_dispatch: schedule: - - cron: "0 20,23 * * *" # Every day at 20:00 and 23:00 GMT + - cron: "0 19,22 * * *" # Every day at 20:00 and 23:00 BST env: DEV_ENV: ${{ secrets.DEV_ENV }} permissions: @@ -50,7 +50,7 @@ jobs: run: ./scripts/flexible-server/auto-start-stop.sh stop ithc '' primary env: DEV_ENV: ${{ env.DEV_ENV }} - + # prod flexible server ccd sccs - name: Production - Postgres Flexible server Auto Stop run: ./scripts/flexible-server/auto-start-stop.sh stop production '' primary diff --git a/.github/workflows/flexibleserver-auto-start.yaml b/.github/workflows/flexibleserver-auto-start.yaml index b1e0a25f..946b565c 100644 --- a/.github/workflows/flexibleserver-auto-start.yaml +++ b/.github/workflows/flexibleserver-auto-start.yaml @@ -2,7 +2,7 @@ name: flexible-server-auto-start on: workflow_dispatch: schedule: - - cron: "15 6 * * 1-5" # Every weekday at 6:15am GMT + - cron: "15 5 * * 1-5" # Every weekday at 6:15am BST env: DEV_ENV: ${{ secrets.DEV_ENV }} @@ -91,7 +91,7 @@ jobs: run: ./scripts/flexible-server/auto-start-stop.sh start ithc '' primary env: DEV_ENV: ${{ env.DEV_ENV }} - + - name: Production - Postgres Flexible server Auto Start run: ./scripts/flexible-server/auto-start-stop.sh start production '' primary env: diff --git a/.github/workflows/housekeeping_aks_issuejson.yaml b/.github/workflows/housekeeping_aks_issuejson.yaml index 0d25ea9f..9f1357de 100644 --- a/.github/workflows/housekeeping_aks_issuejson.yaml +++ b/.github/workflows/housekeeping_aks_issuejson.yaml @@ -2,7 +2,7 @@ name: Housekeeping Shutdown form run-name: Housekeeping json file on: schedule: - - cron: "00 17 * * *" + - cron: "00 16 * * *" workflow_dispatch: env: GH_TOKEN: ${{ secrets.PLATFORM_USER_TOKEN }} diff --git a/.github/workflows/json-file-cleardown.yaml b/.github/workflows/json-file-cleardown.yaml index 39fc68b9..9890fec2 100644 --- a/.github/workflows/json-file-cleardown.yaml +++ b/.github/workflows/json-file-cleardown.yaml @@ -2,7 +2,7 @@ name: json-file-cleardown on: workflow_dispatch: schedule: - - cron: "0 19 * * *" # Every day at 19:00 GMT + - cron: "0 18 * * *" # Every day at 19:00 BST env: GH_TOKEN: ${{ secrets.PLATFORM_USER_TOKEN }} permissions: diff --git a/.github/workflows/mysql-flexible-auto-shutdown.yaml b/.github/workflows/mysql-flexible-auto-shutdown.yaml index 8761caea..e0a93dff 100644 --- a/.github/workflows/mysql-flexible-auto-shutdown.yaml +++ b/.github/workflows/mysql-flexible-auto-shutdown.yaml @@ -2,7 +2,7 @@ name: mysql-flexible-auto-shutdown on: workflow_dispatch: schedule: - - cron: "0 20,23 * * *" # Every day at 20:00 and 23:00 GMT + - cron: "0 19,22 * * *" # Every day at 20:00 and 23:00 BST env: DEV_ENV: ${{ secrets.DEV_ENV }} permissions: diff --git a/.github/workflows/mysql-flexible-auto-start.yaml b/.github/workflows/mysql-flexible-auto-start.yaml index d980be9a..37895681 100644 --- a/.github/workflows/mysql-flexible-auto-start.yaml +++ b/.github/workflows/mysql-flexible-auto-start.yaml @@ -2,7 +2,7 @@ name: mysql-flexible-auto-start on: workflow_dispatch: schedule: - - cron: "15 6 * * 1-5" # Every weekday at 6:15am GMT + - cron: "15 5 * * 1-5" # Every weekday at 6:15am BST env: DEV_ENV: ${{ secrets.DEV_ENV }} diff --git a/.github/workflows/sqlmi-auto-shutdown.yaml b/.github/workflows/sqlmi-auto-shutdown.yaml index b904a9e0..226b436f 100644 --- a/.github/workflows/sqlmi-auto-shutdown.yaml +++ b/.github/workflows/sqlmi-auto-shutdown.yaml @@ -2,7 +2,7 @@ name: sql-managed-instance-auto-shutdown on: workflow_dispatch: schedule: - - cron: "0 20,23 * * *" # Every day at 20:00 and 23:00 GMT + - cron: "0 19,22 * * *" # Every day at 20:00 and 23:00 BST env: DEV_ENV: ${{ secrets.DEV_ENV }} permissions: diff --git a/.github/workflows/sqlmi-auto-start.yaml b/.github/workflows/sqlmi-auto-start.yaml index 8d56f2d3..013a5025 100644 --- a/.github/workflows/sqlmi-auto-start.yaml +++ b/.github/workflows/sqlmi-auto-start.yaml @@ -2,7 +2,7 @@ name: sql-managed-instance-auto-start on: workflow_dispatch: schedule: - - cron: "30 6 * * 1-5" # Every weekday at 6:30am GMT + - cron: "30 5 * * 1-5" # Every weekday at 6:30am BST env: DEV_ENV: ${{ secrets.DEV_ENV }} diff --git a/.github/workflows/storage-sftp-auto-disable.yaml b/.github/workflows/storage-sftp-auto-disable.yaml index 4c4b07c9..f5e8e058 100644 --- a/.github/workflows/storage-sftp-auto-disable.yaml +++ b/.github/workflows/storage-sftp-auto-disable.yaml @@ -2,7 +2,7 @@ name: storage-sftp-auto-disable on: workflow_dispatch: schedule: - - cron: "0 20,23 * * *" # Every day at 20:00 and 23:00 GMT + - cron: "0 19,22 * * *" # Every day at 20:00 and 23:00 BST env: DEV_ENV: ${{ secrets.DEV_ENV }} permissions: diff --git a/.github/workflows/storage-sftp-auto-enable.yaml b/.github/workflows/storage-sftp-auto-enable.yaml index ae46e585..e6c8d50d 100644 --- a/.github/workflows/storage-sftp-auto-enable.yaml +++ b/.github/workflows/storage-sftp-auto-enable.yaml @@ -2,7 +2,7 @@ name: storage-sftp-auto-enable on: workflow_dispatch: schedule: - - cron: "30 6 * * 1-5" # Every weekday at 6:30am GMT + - cron: "30 5 * * 1-5" # Every weekday at 6:30am BST env: DEV_ENV: ${{ secrets.DEV_ENV }} permissions: diff --git a/.github/workflows/vm-auto-shutdown.yaml b/.github/workflows/vm-auto-shutdown.yaml index ee6e392f..d25ac13e 100644 --- a/.github/workflows/vm-auto-shutdown.yaml +++ b/.github/workflows/vm-auto-shutdown.yaml @@ -2,7 +2,7 @@ name: vm-auto-shutdown on: workflow_dispatch: schedule: - - cron: "0 20,23 * * *" # Every day at 20:00 and 23:00 GMT + - cron: "0 19,22 * * *" # Every day at 20:00 and 23:00 BST env: DEV_ENV: ${{ secrets.DEV_ENV }} permissions: diff --git a/.github/workflows/vm-auto-start.yaml b/.github/workflows/vm-auto-start.yaml index dd53f587..82867019 100644 --- a/.github/workflows/vm-auto-start.yaml +++ b/.github/workflows/vm-auto-start.yaml @@ -2,7 +2,7 @@ name: vm-auto-start on: workflow_dispatch: schedule: - - cron: "30 6 * * 1-5" # Every weekday at 6:30am GMT + - cron: "30 5 * * 1-5" # Every weekday at 6:30am BST env: DEV_ENV: ${{ secrets.DEV_ENV }} diff --git a/.github/workflows/vmss-auto-shutdown.yaml b/.github/workflows/vmss-auto-shutdown.yaml index fb9d4222..277ed9df 100644 --- a/.github/workflows/vmss-auto-shutdown.yaml +++ b/.github/workflows/vmss-auto-shutdown.yaml @@ -2,7 +2,7 @@ name: vmss-auto-shutdown on: workflow_dispatch: schedule: - - cron: "0 20,23 * * *" # Every day at 20:00 and 23:00 GMT + - cron: "0 19,22 * * *" # Every day at 20:00 and 23:00 BST env: DEV_ENV: ${{ secrets.DEV_ENV }} permissions: diff --git a/.github/workflows/vmss-auto-start.yaml b/.github/workflows/vmss-auto-start.yaml index e51c3cf4..70be89f1 100644 --- a/.github/workflows/vmss-auto-start.yaml +++ b/.github/workflows/vmss-auto-start.yaml @@ -2,7 +2,7 @@ name: vmss-auto-start on: workflow_dispatch: schedule: - - cron: "30 6 * * 1-5" # Every weekday at 6:30am GMT + - cron: "30 5 * * 1-5" # Every weekday at 6:30am BST env: DEV_ENV: ${{ secrets.DEV_ENV }}