From cc8f7ad27abc28f0f365aca965b8964f5a6cd0fa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 4 May 2026 21:35:53 +0000 Subject: [PATCH 1/2] chore: add dependabot configuration for npm, pip, GitHub Actions, and Docker Agent-Logs-Url: https://github.com/th30d4y/OpenLearnX/sessions/725ba46a-da27-4aa9-a435-706bc4cda530 Co-authored-by: 0x5t4l1n <161853795+0x5t4l1n@users.noreply.github.com> --- .github/dependabot.yml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..bf9c1f5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,41 @@ +version: 2 +updates: + # npm - frontend + - package-ecosystem: "npm" + directory: "/frontend" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "javascript" + + # pip - Python backend + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "python" + + # GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "github-actions" + + # Docker + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "docker" From 944717aa48a8a740a69200778f17c62f50c8bd78 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 4 May 2026 21:38:10 +0000 Subject: [PATCH 2/2] chore: change dependabot schedule from weekly to daily Agent-Logs-Url: https://github.com/th30d4y/OpenLearnX/sessions/5d6a54c9-12a6-4e09-816b-53844cceeef1 Co-authored-by: 0x5t4l1n <161853795+0x5t4l1n@users.noreply.github.com> --- .github/dependabot.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bf9c1f5..4c61b0d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,7 +4,7 @@ updates: - package-ecosystem: "npm" directory: "/frontend" schedule: - interval: "weekly" + interval: "daily" open-pull-requests-limit: 10 labels: - "dependencies" @@ -14,7 +14,7 @@ updates: - package-ecosystem: "pip" directory: "/" schedule: - interval: "weekly" + interval: "daily" open-pull-requests-limit: 10 labels: - "dependencies" @@ -24,7 +24,7 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" + interval: "daily" open-pull-requests-limit: 10 labels: - "dependencies" @@ -34,7 +34,7 @@ updates: - package-ecosystem: "docker" directory: "/" schedule: - interval: "weekly" + interval: "daily" open-pull-requests-limit: 10 labels: - "dependencies"