From 9d54687dba246369589ba13737abe29d9b4889c2 Mon Sep 17 00:00:00 2001 From: Pascal Aellig <93140290+aelligp@users.noreply.github.com> Date: Wed, 15 Apr 2026 18:10:22 +0200 Subject: [PATCH 1/2] Configure Dependabot for GitHub Actions and Julia --- .github/dependabot.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d60f0707..9949daef 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,6 +2,28 @@ version: 2 updates: - package-ecosystem: "github-actions" + groups: + # Group all GitHub Actions PRs into a single PR: + all-github-actions: + patterns: + - "*" directory: "/" # Location of package manifests schedule: interval: "monthly" + open-pull-requests-limit: 100 + labels: + - "dependencies" + - "github-actions" + + - package-ecosystem: "julia" + directories: + - "/" + - "/test" + schedule: + interval: "monthly" + groups: + all-julia-dependencies: + patterns: + - "*" + labels: + - "dependencies" From 317cfccbcde4dba0a7c11bd2ea97f56765047803 Mon Sep 17 00:00:00 2001 From: Pascal Aellig <93140290+aelligp@users.noreply.github.com> Date: Wed, 15 Apr 2026 18:10:54 +0200 Subject: [PATCH 2/2] Delete .github/workflows/CompatHelper.yml --- .github/workflows/CompatHelper.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/CompatHelper.yml diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml deleted file mode 100644 index 8443e915..00000000 --- a/.github/workflows/CompatHelper.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: CompatHelper -on: - schedule: - - cron: '00 00 * * *' - workflow_dispatch: -jobs: - CompatHelper: - runs-on: ubuntu-latest - steps: - - name: Pkg.add("CompatHelper") - run: julia -e 'using Pkg; Pkg.add("CompatHelper")' - - name: CompatHelper.main() - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} # optional - run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs=[""])' # subdirs can be omitted if not needed