From c9b81e3282d1c084be9c59ba65b9a8c4bbdddf81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Garc=C3=ADa?= Date: Wed, 21 Jan 2026 09:33:29 -0600 Subject: [PATCH 1/2] fix(docs): use GitHub URL for release notes link --- docs/api-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-reference.md b/docs/api-reference.md index feb925e..60e7a64 100644 --- a/docs/api-reference.md +++ b/docs/api-reference.md @@ -10,7 +10,7 @@ type DateInput = number | string | Date; - `parse()` now uses **local time** for date-only strings (was UTC) - Getter functions now return **local time** components (was UTC) -See [Release Notes](/RELEASE_NOTES_v2.0.0.md) for migration guide. +See [Release Notes](https://github.com/bbernag/react-native-date/blob/main/packages/native-date/RELEASE_NOTES_v2.0.0.md) for migration guide. ::: ## Parsing From 0f8a97a25c01cdb78eec823e789405e8545b9ef3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Garc=C3=ADa?= Date: Wed, 21 Jan 2026 09:36:28 -0600 Subject: [PATCH 2/2] ci: skip builds for docs-only changes Paths-ignore docs/ and *.md files to avoid unnecessary native builds --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17058f2..6060c6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,8 +3,14 @@ name: CI on: push: branches: [main] + paths-ignore: + - 'docs/**' + - '*.md' pull_request: branches: [main] + paths-ignore: + - 'docs/**' + - '*.md' jobs: lint-and-test: