From 5562c5771f80929a6537b34700aaaa024c3f26b1 Mon Sep 17 00:00:00 2001 From: Ling Bao Date: Sat, 4 Jul 2026 23:02:22 +1000 Subject: [PATCH] feat(ci): wire central ci-workflows@v1 non-NMS caller - Create .github/workflows/maven-ci.yml with reusable workflow - Uses UltiKits/ci-workflows/.github/workflows/maven-ci.yml@v1 - needs-nms: false (pure API module, no NMS) --- .github/workflows/maven-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/maven-ci.yml diff --git a/.github/workflows/maven-ci.yml b/.github/workflows/maven-ci.yml new file mode 100644 index 0000000..b903cdb --- /dev/null +++ b/.github/workflows/maven-ci.yml @@ -0,0 +1,13 @@ +name: Maven CI +on: + push: + branches: ['**'] + pull_request: +permissions: + contents: read +jobs: + ci: + # Pin to the floating major tag @v1 to auto-receive security re-pins; immutable tags (e.g. v1.1.0) remain available for strict pinning. + uses: UltiKits/ci-workflows/.github/workflows/maven-ci.yml@v1 + with: + needs-nms: false