From 2867ebc1038527a5bd16741617db3bf869acb31c Mon Sep 17 00:00:00 2001 From: Marcus Aspin Date: Mon, 30 Oct 2023 09:35:01 +0000 Subject: [PATCH] Remove scheduled run --- .github/workflows/tools.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index 29558b64da..34bdb14e8a 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -1,18 +1,17 @@ name: Tools -# Rebuild shared Docker images +# Deploy shared tools - currently just flipt and auth0 on: push: + branches: + - main paths: - tools/** - schedule: - - cron: "30 5 * * MON-FRI" # Every weekday at 05:30 UTC workflow_dispatch: jobs: deploy: runs-on: ubuntu-latest - if: ${{ github.event_name != 'schedule' && (github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch') }} strategy: fail-fast: false matrix: @@ -50,7 +49,6 @@ jobs: deploy-auth: runs-on: ubuntu-latest - if: ${{ github.event_name != 'schedule' && (github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch') }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4