From 7a5a748698ce2d6af77fe9294c318f7383ab72af Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda Date: Mon, 1 Jun 2026 14:51:18 -0700 Subject: [PATCH 1/3] ci: add Dependabot for hotdata SDK updates --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..3741e2a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: pip + directory: "/" + schedule: + interval: daily From 7d727b095d8309f8e121453087b89b5223df910f Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda Date: Mon, 1 Jun 2026 14:59:09 -0700 Subject: [PATCH 2/3] ci: scope Dependabot to hotdata packages, fix ecosystem --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3741e2a..c0e1b45 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,6 @@ updates: directory: "/" schedule: interval: daily + allow: + - dependency-name: hotdata + - dependency-name: hotdata-runtime From 5f7b6ef727cfcd728307d4cf768fb1230eb2fcf4 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda Date: Mon, 1 Jun 2026 14:59:31 -0700 Subject: [PATCH 3/3] ci: auto-merge Dependabot PRs --- .github/workflows/dependabot-automerge.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/dependabot-automerge.yml diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml new file mode 100644 index 0000000..55c3c3a --- /dev/null +++ b/.github/workflows/dependabot-automerge.yml @@ -0,0 +1,17 @@ +name: Dependabot auto-merge + +on: pull_request + +permissions: + contents: write + pull-requests: write + +jobs: + auto-merge: + runs-on: ubuntu-latest + if: github.actor == 'dependabot[bot]' + steps: + - name: Enable auto-merge + run: gh pr merge --squash --auto "${{ github.event.pull_request.number }}" + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}