We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b33f12 commit c4c1a1cCopy full SHA for c4c1a1c
2 files changed
.github/dependabot.yml
@@ -0,0 +1,9 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: pip
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ allow:
8
+ - dependency-name: hotdata
9
+ - dependency-name: hotdata-runtime
.github/workflows/dependabot-automerge.yml
@@ -0,0 +1,17 @@
+name: Dependabot auto-merge
+
+on: pull_request
+permissions:
+ contents: write
+ pull-requests: write
+jobs:
10
+ auto-merge:
11
+ runs-on: ubuntu-latest
12
+ if: github.actor == 'dependabot[bot]'
13
+ steps:
14
+ - name: Enable auto-merge
15
+ run: gh pr merge --squash --auto "${{ github.event.pull_request.number }}"
16
+ env:
17
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments