From 9e05d27f6e647016ef966fe43b7516fcc2f2b70b Mon Sep 17 00:00:00 2001 From: Digvijay Chauhan Date: Sat, 21 Feb 2026 11:00:48 +0100 Subject: [PATCH 1/2] feat(docs): render logo onto vitepress hero section --- docs/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/index.md b/docs/index.md index 09c0b10..f07608e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,6 +4,9 @@ layout: home hero: name: Rapp text: Schema-Aware Binary Serialization for .NET + image: + src: /logo.svg + alt: Rapp Logo tagline: Bridging the gap between MemoryPack's raw performance and enterprise deployment safety requirements. actions: - theme: brand From d414d6fd8c5eb010245275101c76b1892fc02bcd Mon Sep 17 00:00:00 2001 From: Digvijay Chauhan Date: Sat, 21 Feb 2026 11:02:55 +0100 Subject: [PATCH 2/2] chore(ci): skip codeql analysis for documentation changes --- .github/workflows/codeql.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8031eff..d6df958 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -3,8 +3,18 @@ name: "CodeQL" on: push: branches: [ "main", "development" ] + paths-ignore: + - 'docs/**' + - '*.md' + - 'LICENSE' + - '.github/workflows/deploy-docs.yml' pull_request: branches: [ "main", "development" ] + paths-ignore: + - 'docs/**' + - '*.md' + - 'LICENSE' + - '.github/workflows/deploy-docs.yml' schedule: - cron: '34 1 * * 0'