From b061a9a92d7044e8d3f0cc32c18dae55457d6eaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20H=C3=B8jlund=20Larsen?= Date: Tue, 22 Aug 2023 14:43:05 +0200 Subject: [PATCH] Update workflow to run on push to master --- .github/workflows/valgrind.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/valgrind.yml b/.github/workflows/valgrind.yml index cb18dee..fe84750 100644 --- a/.github/workflows/valgrind.yml +++ b/.github/workflows/valgrind.yml @@ -1,13 +1,13 @@ name: Valgrind -on: +'on': workflow_dispatch: inputs: extra_resolve_options: - description: "Extra Resolve Options" + description: Extra Resolve Options required: false - schedule: - - cron: "0 1 * * *" # 3 AM CET push: + branches: + - master pull_request: jobs: valgrind: @@ -15,5 +15,3 @@ jobs: uses: steinwurf/valgrind-action/.github/workflows/action.yml@5.0.0 with: extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }} - -