From afc6bb3672510f1feb1cc70c7f5b41b905ab8954 Mon Sep 17 00:00:00 2001 From: Sourabh Mehta Date: Wed, 22 Jul 2026 11:51:35 +0200 Subject: [PATCH 1/4] Add Dependabot updates for GitHub Actions Configure Dependabot to check GitHub Actions monthly, group updates, and label dependency pull requests for easier maintenance. --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..584a3bb --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,24 @@ +version: 2 + +updates: + - package-ecosystem: "github-actions" + directory: "/" + + schedule: + interval: "cron" + cronjob: "0 2 1 * *" # 02:00 on the 1st of every month + timezone: "Europe/Berlin" + + open-pull-requests-limit: 5 + + groups: + github-actions: + patterns: + - "*" + + commit-message: + prefix: "ci" + + labels: + - "dependencies" + - "github-actions" From d8cac704b18334da964b01b8dd82fc6a8679b911 Mon Sep 17 00:00:00 2001 From: Sourabh Mehta <73165318+soumeh01@users.noreply.github.com> Date: Wed, 22 Jul 2026 13:01:11 +0200 Subject: [PATCH 2/4] Format dependabot.yml for consistency --- .github/dependabot.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 584a3bb..e3d8b0e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -18,7 +18,3 @@ updates: commit-message: prefix: "ci" - - labels: - - "dependencies" - - "github-actions" From c190716989bdc72300291820e7c952b7602e8636 Mon Sep 17 00:00:00 2001 From: Sourabh Mehta Date: Wed, 22 Jul 2026 13:51:49 +0200 Subject: [PATCH 3/4] Add schedule CI workflows --- .github/workflows/Build_RPS_AppKit-E8.yml | 2 ++ .github/workflows/Test_RPS_SSE-320-U85.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/Build_RPS_AppKit-E8.yml b/.github/workflows/Build_RPS_AppKit-E8.yml index 170a74b..ad9c348 100644 --- a/.github/workflows/Build_RPS_AppKit-E8.yml +++ b/.github/workflows/Build_RPS_AppKit-E8.yml @@ -21,6 +21,8 @@ on: branches: [main] push: branches: [main] + schedule: + - cron: '0 20 * * 0' permissions: contents: read diff --git a/.github/workflows/Test_RPS_SSE-320-U85.yml b/.github/workflows/Test_RPS_SSE-320-U85.yml index 736c4e6..9ee0974 100644 --- a/.github/workflows/Test_RPS_SSE-320-U85.yml +++ b/.github/workflows/Test_RPS_SSE-320-U85.yml @@ -21,6 +21,8 @@ on: branches: [main] push: branches: [main] + schedule: + - cron: '0 20 * * 0' jobs: CI: From 58519e702928eceda1e3f8727c884bba5d344015 Mon Sep 17 00:00:00 2001 From: Sourabh Mehta Date: Wed, 22 Jul 2026 15:00:28 +0200 Subject: [PATCH 4/4] Added comment to cron job --- .github/workflows/Build_RPS_AppKit-E8.yml | 2 +- .github/workflows/Test_RPS_SSE-320-U85.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Build_RPS_AppKit-E8.yml b/.github/workflows/Build_RPS_AppKit-E8.yml index ad9c348..b3b3d08 100644 --- a/.github/workflows/Build_RPS_AppKit-E8.yml +++ b/.github/workflows/Build_RPS_AppKit-E8.yml @@ -22,7 +22,7 @@ on: push: branches: [main] schedule: - - cron: '0 20 * * 0' + - cron: '0 20 * * 0' # Runs at 20:00 on Sunday permissions: contents: read diff --git a/.github/workflows/Test_RPS_SSE-320-U85.yml b/.github/workflows/Test_RPS_SSE-320-U85.yml index 9ee0974..26b0008 100644 --- a/.github/workflows/Test_RPS_SSE-320-U85.yml +++ b/.github/workflows/Test_RPS_SSE-320-U85.yml @@ -22,7 +22,7 @@ on: push: branches: [main] schedule: - - cron: '0 20 * * 0' + - cron: '0 20 * * 0' # Runs at 20:00 on Sunday jobs: CI: