From 8a1aaeb7ffcf40415249d7c81d979ce354e1cb25 Mon Sep 17 00:00:00 2001 From: Rob Oxspring Date: Tue, 25 Aug 2026 11:36:42 +0100 Subject: [PATCH 1/4] chore: add Dependabot config for Gradle and GitHub Actions --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..18b61f7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +version: 2 +updates: + - package-ecosystem: "gradle" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "gradle" + directory: "/convention" + schedule: + interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From e503b4f9c70818c1ac57208a4e0ba7a3234175da Mon Sep 17 00:00:00 2001 From: Rob Oxspring Date: Tue, 25 Aug 2026 11:38:59 +0100 Subject: [PATCH 2/4] fix: quote ci.yml if condition to avoid YAML parse error --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2a0029..2b27502 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: run: ./gradlew build - name: Publish - if: github.ref == 'refs/heads/main' && github.event_name == 'push' && startsWith(github.event.head_commit.message, 'chore(main): release') + if: "github.ref == 'refs/heads/main' && github.event_name == 'push' && startsWith(github.event.head_commit.message, 'chore(main): release')" run: ./gradlew publish env: GITHUB_ACTOR: ${{ github.actor }} From de6bf225d8b504caf55045be02c77b21c19cd81d Mon Sep 17 00:00:00 2001 From: Rob Oxspring Date: Tue, 25 Aug 2026 11:42:07 +0100 Subject: [PATCH 3/4] chore: only run CI on main push and PRs to avoid duplicate builds --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b27502..37badd6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,8 @@ name: CI on: push: - branches: ["**"] + branches: [main] pull_request: - branches: ["**"] jobs: build: From 5be0ba16d98e258cf08c2d96ccfe624d5a09ab0e Mon Sep 17 00:00:00 2001 From: Rob Oxspring Date: Tue, 25 Aug 2026 11:54:22 +0100 Subject: [PATCH 4/4] chore: disable body-max-line-length in commitlint (Dependabot compat) --- .commitlintrc.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .commitlintrc.json diff --git a/.commitlintrc.json b/.commitlintrc.json new file mode 100644 index 0000000..19ad3c0 --- /dev/null +++ b/.commitlintrc.json @@ -0,0 +1,6 @@ +{ + "extends": ["@commitlint/config-conventional"], + "rules": { + "body-max-line-length": [0, "always", 100] + } +}