Skip to content

Commit 6793860

Browse files
committed
Merge branch 'main' into patch-1
2 parents ad7920f + c0d2387 commit 6793860

File tree

530 files changed

+50589
-17182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

530 files changed

+50589
-17182
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
<!--
2+
13
# READ ME PLEASE
24
35
> **TL;DR: Make sure to add your changes to versioned docs**
@@ -7,3 +9,5 @@ Thanks for opening a PR!
79
The docs cover several versions of `react-navigation`, and in some cases there are several files (for version 1, version 2 and etc.) that all describe a single page of the docs (eg. "Getting Started").
810
911
Please make sure that the edit you're making in `docs/file-you-edited.md` is also included in the file for the correct version, eg. `/versioned_docs/version-3.x/file-you-edited.md` for version 3. If such file doesn't exist, please create it. :+1:
12+
13+
-->

.github/workflows/autofix.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: autofix.ci
22

33
on:
4-
push:
5-
branches:
6-
- main
74
pull_request:
85
branches:
96
- main
@@ -22,10 +19,10 @@ jobs:
2219
uses: ./.github/actions/setup
2320

2421
- name: Fix lint issues
25-
run: yarn markdownlint-cli2-fix
22+
run: yarn markdownlint-cli2 --fix
2623

2724
- name: Prettify code
2825
run: yarn prettier --write .
2926

3027
- name: Autofix
31-
uses: autofix-ci/action@8106fde54b877517c9af2c3d68918ddeaa7bed64
28+
uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,8 @@ jobs:
1717
- name: Lint markdown
1818
run: yarn markdownlint-cli2
1919

20+
- name: Run tests
21+
run: yarn test
22+
2023
- name: Build pages
2124
run: yarn build

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Deploy
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- main

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ node_modules
22
.DS_Store
33
.docusaurus
44
.history
5+
.idea
56

67
build/
78
translated_docs/
@@ -16,3 +17,6 @@ i18n/*
1617
!.yarn/releases
1718
!.yarn/sdks
1819
!.yarn/versions
20+
21+
# AI
22+
.claude/

.markdownlint.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ MD013: false
55

66
# Disable checks for inline HTML
77
MD033: false
8+
9+
# Descriptive link text
10+
MD059: false

0 commit comments

Comments
 (0)