From 1874a307389ca1e101001d353b45dd31902811a1 Mon Sep 17 00:00:00 2001 From: linagee Date: Mon, 27 Dec 2021 08:12:53 -0700 Subject: [PATCH 1/3] Test commit --- docs/getting-started/concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/concepts.md b/docs/getting-started/concepts.md index 3bb1fcd1..01d4247b 100644 --- a/docs/getting-started/concepts.md +++ b/docs/getting-started/concepts.md @@ -5,7 +5,7 @@ sidebar_label: Concepts slug: /getting-started/concepts --- -Various high level concepts used in the Meshtastic meta verse: +Various high level concepts used in the Meshtastic metaverse: * mesh networking: By using [low-power radios](https://meshtastic.org/docs/hardware) to connect other low-power radios using LoRa to be able to send and receive messages and data. This can be completely separate from any other network such as the internet. You can start small and get two devices to start experiementing. Do not expect to stream music or videos as LoRa is intended for smaller, lower bandwidth type uses. * captive portal: Using Meshtastic, you can create a separate wifi network for you join your phone or computer on a mesh network. See [Web Interface](https://meshtastic.org/docs/software/web/web-app-software) for more info. This is ideal in a situation where you are remote, such as in the forest or on a mountain or if there is a major power/internet outage such as in a storm other other disaster. From 7da543217516d3f50e2b02375a54eccd388ecd0b Mon Sep 17 00:00:00 2001 From: linagee Date: Mon, 27 Dec 2021 08:20:32 -0700 Subject: [PATCH 2/3] Only reviewdog level 'error' will show bad grammar as an error --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7b1f72ae..c525a40e 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -15,7 +15,7 @@ jobs: # Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review]. reporter: github-pr-review # Change reporter level if you need. - level: info + level: error - uses: actions/setup-node@v2-beta with: node-version: 16 From ac427cb9637858f5e88b3fb689bf6421f15b3cab Mon Sep 17 00:00:00 2001 From: linagee Date: Mon, 27 Dec 2021 08:24:50 -0700 Subject: [PATCH 3/3] Default of GITHUB_TOKEN is github.token. I don't have this secret defined. --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index c525a40e..73e77bc9 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -11,7 +11,7 @@ jobs: submodules: true - uses: reviewdog/action-languagetool@v1 with: - github_token: ${{ secrets.github_token }} + # github_token: ${{ secrets.github_token }} # Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review]. reporter: github-pr-review # Change reporter level if you need.