diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 342297f35f047..9300363fe8418 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,9 @@ updates: open-pull-requests-limit: 1 package-ecosystem: gradle schedule: - interval: weekly + interval: daily + time: "21:25" + timezone: America/New_York labels: - "dependabot" - "dependencies" diff --git a/.github/workflows/dependabot-on-push.yml b/.github/workflows/dependabot-on-push.yml deleted file mode 100644 index dfc1f9f53f5bf..0000000000000 --- a/.github/workflows/dependabot-on-push.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Dependabot on Push - -on: - push: - branches: - - main - -jobs: - dependabot: - runs-on: ubuntu-latest - - steps: - - name: Check out repository - uses: actions/checkout@v3 - - - name: Trigger Dependabot Update - run: | - echo "Triggering Dependabot update..." - # Dependabot command can be simulated by updating config or forcing updates here. - # You can force update by changing a file or invoking an API if applicable. - - - name: Run Dependabot - uses: dependabot/fetch-metadata@v1