From d90ad39b494d60617794da6d2571010f753d351b Mon Sep 17 00:00:00 2001 From: Kevin Longmuir Date: Fri, 27 Feb 2026 08:28:19 -0500 Subject: [PATCH 1/3] chore: update contribution docs about how to push tags properly --- CONTRIBUTING | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CONTRIBUTING b/CONTRIBUTING index 024c947..4d26b11 100644 --- a/CONTRIBUTING +++ b/CONTRIBUTING @@ -25,3 +25,10 @@ npm run lint:fix npm run format:check npm run format:write ``` + +### Releasing + +1. Wait for `release-build` pipeline step to finish post push to `main` +2. `git fetch origin && git switch release-build && git pull` +3. `git tag v` +4. `git push origin ` From 7afb6c7d18085693c75d6550e49e4d7ac7bcdcf2 Mon Sep 17 00:00:00 2001 From: Kevin Longmuir Date: Fri, 27 Feb 2026 08:30:12 -0500 Subject: [PATCH 2/3] chore: ignore CI when PRs only contain docs updates --- .github/workflows/validate.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 741375e..886d4c7 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -3,6 +3,8 @@ name: Validate on: pull_request: branches: [main] + paths-ignore: + - '**/*.md' jobs: lint: From f7c2998afd7a730310105a77e36a48c85e2fb31e Mon Sep 17 00:00:00 2001 From: Kevin Longmuir Date: Fri, 27 Feb 2026 08:30:59 -0500 Subject: [PATCH 3/3] chore: add file extensiono to contributing doc --- CONTRIBUTING => CONTRIBUTING.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename CONTRIBUTING => CONTRIBUTING.md (100%) diff --git a/CONTRIBUTING b/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING rename to CONTRIBUTING.md