From 01af4af04639cac7ff4eeee427d3f6aa9b376831 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda Date: Mon, 1 Jun 2026 14:51:53 -0700 Subject: [PATCH 1/4] 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 2bfcafc069ac9259556c88c0299a762c591ffb07 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda Date: Mon, 1 Jun 2026 14:59:18 -0700 Subject: [PATCH 2/4] ci: scope Dependabot to hotdata packages, fix ecosystem --- .github/dependabot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3741e2a..ce12bb6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,9 @@ version: 2 updates: - - package-ecosystem: pip + - package-ecosystem: uv directory: "/" schedule: interval: daily + allow: + - dependency-name: hotdata + - dependency-name: hotdata-runtime From 19c2aac44faea2aab920c46cfe33ddb3c9977409 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda Date: Mon, 1 Jun 2026 14:59:38 -0700 Subject: [PATCH 3/4] 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 }} From 801b8ceb4dbf72863eb0df50ddf60ccec2cc4628 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda Date: Mon, 1 Jun 2026 15:02:13 -0700 Subject: [PATCH 4/4] ci: remove dead hotdata-runtime self-reference from allow list --- .github/dependabot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ce12bb6..001146e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,4 +6,3 @@ updates: interval: daily allow: - dependency-name: hotdata - - dependency-name: hotdata-runtime