34 Commits
Author SHA1 Message Date
monrepo-bot 851e82d625 chore: update scraper-api to 7ff47a79bcb4 2026-08-26 01:55:19 +00:00
monrepo-bot 8fe5a478b5 chore: update hub to 7b00c9deb2bc 2026-08-26 01:54:35 +00:00
asepharyana a2e65e3980 chore: update dependabot-auto-merge.yml 2026-08-26 08:53:32 +07:00
asepharyana 1bbba46b9a chore: update dependabot.yml 2026-08-26 08:53:30 +07:00
monrepo-bot 80ea5f0b2e chore: update hub to d3ae61b0c556 2026-08-25 13:33:16 +00:00
monrepo-bot 6cc583d3b9 chore: update scraper-api to c709c84a4d42 2026-08-25 13:33:10 +00:00
asepharyana 912fd6864f feat: add dependabot auto-merge workflow 2026-08-25 20:32:53 +07:00
monrepo-bot eba29a2fa1 chore: update hub to eb7b8a12fdd4 2026-08-25 13:22:06 +00:00
monrepo-bot 76df15616e chore: update hub to fab67538e15b 2026-08-25 11:20:26 +00:00
monrepo-bot 07a81df64d chore: update hub to 0de569cff475 2026-08-25 11:18:01 +00:00
monrepo-bot bbbb1d2cee chore: update scraper-api to 55cfd513e3f8 2026-08-25 11:17:49 +00:00
monrepo-bot f9d8445443 chore: update llm-api to 1916ebe40bcb 2026-08-25 11:17:38 +00:00
monrepo-bot 4f3442f97b chore: update tools to b35b00376dd1 2026-08-25 11:17:18 +00:00
asepharyana 93cf1ffb9b feat: update dependabot config 2026-08-25 18:16:34 +07:00
monrepo-bot 499721c5e3 chore: update hub to ac5ca405dda4 2026-08-25 11:16:15 +00:00
asepharyana 09c5311568 feat: update dependabot config 2026-08-25 18:12:46 +07:00
monrepo-bot e74a303b9d chore: update scraper-api to a23698a6c4ef 2026-08-25 11:08:57 +00:00
monrepo-bot 0bcd6582f4 chore: update hub to a0042942412a 2026-08-25 00:11:51 +00:00
monrepo-bot a38a99b6f4 chore: update hub to bc7279646715 2026-08-25 00:11:43 +00:00
monrepo-bot 53cc225bff chore: update hub to 90267abb9220 2026-08-25 00:11:35 +00:00
monrepo-bot a20b0be8da chore: update hub to 7e44d677aca4 2026-08-24 00:23:43 +00:00
monrepo-bot 76ccf5488b chore: update hub to d5cd4ece013b 2026-08-24 00:17:46 +00:00
monrepo-bot 29271ccc05 chore: update hub to e5fb73f61eba 2026-08-21 00:11:29 +00:00
monrepo-bot 6a1d199443 chore: update hub to 4a6b498879fa 2026-08-20 00:11:52 +00:00
monrepo-bot eb19385ab4 chore: update hub to ed9fa16b5760 2026-08-17 00:18:19 +00:00
monrepo-bot a1c0ef25ef chore: update hub to 1640230c66d3 2026-08-17 00:18:09 +00:00
monrepo-bot 609da6b6bc chore: update hub to c891439857df 2026-08-14 00:14:22 +00:00
monrepo-bot 402499d109 chore: update hub to bfbfc175ca82 2026-08-13 00:13:26 +00:00
monrepo-bot 1389d5faa3 chore: update hub to b30e6936b1df 2026-08-11 00:12:50 +00:00
monrepo-bot 59e6c5c6a1 chore: update hub to 9ea002a7a10d 2026-08-10 00:24:27 +00:00
monrepo-bot 4f8a975337 chore: update hub to e67db071bb0f 2026-08-10 00:24:15 +00:00
monrepo-bot c251867f05 chore: update hub to 17a785c9d277 2026-08-10 00:18:32 +00:00
monrepo-bot b06cddca4a chore: update hub to 915d8482947a 2026-08-10 00:18:27 +00:00
monrepo-bot 19aface599 chore: update hub to a5bf846e52fd 2026-08-10 00:18:19 +00:00
6 changed files with 35 additions and 21 deletions
+17
View File
@@ -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 for Dependabot PR
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+14 -17
View File
@@ -1,21 +1,18 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot
version: 2
updates:
- package-ecosystem: 'devcontainers'
directory: '/'
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: weekly
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: weekly
interval: "daily"
open-pull-requests-limit: 10
groups:
github-actions:
patterns:
- '*'
production:
dependency-type: "production"
update-types:
- "minor"
- "patch"
development:
dependency-type: "development"
update-types:
- "minor"
- "patch"