From 1b4f26e77a110b6d6343957b82fb16b49903cff5 Mon Sep 17 00:00:00 2001 From: Bastian Gruber Date: Tue, 19 Nov 2024 11:45:56 -0400 Subject: [PATCH] fix --- .../update-remote-settings-dumps.yaml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-remote-settings-dumps.yaml b/.github/workflows/update-remote-settings-dumps.yaml index c2526d6b9a..98e459e2c0 100644 --- a/.github/workflows/update-remote-settings-dumps.yaml +++ b/.github/workflows/update-remote-settings-dumps.yaml @@ -1,15 +1,28 @@ name: Update Remote Settings Dumps on: + push: + branches: + - gh-action-packaged-data schedule: - - cron: "0 0 * * 0" # Run weekly on Sunday at midnight - workflow_dispatch: # Allow manual trigger + - cron: '0 0 * * *' + workflow_dispatch: inputs: base_branch: - description: 'Base branch' + description: 'Base branch to create PR against' required: true default: 'main' +#on: +# schedule: +# - cron: "0 0 * * 0" # Run weekly on Sunday at midnight +# workflow_dispatch: # Allow manual trigger +# inputs: +# base_branch: +# description: 'Base branch' +# required: true +# default: 'main' + jobs: update-dumps: runs-on: ubuntu-latest