You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sedona.apache.org by ji...@apache.org on 2023/12/30 03:34:22 UTC

(sedona) branch master updated: [DOCS] Enable markdownlint rule MD005 (#1167)

This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new f947d4793 [DOCS] Enable markdownlint rule MD005 (#1167)
f947d4793 is described below

commit f947d4793d66bb3620565c026f4c83cc3729cb06
Author: John Bampton <jb...@users.noreply.github.com>
AuthorDate: Sat Dec 30 13:34:16 2023 +1000

    [DOCS] Enable markdownlint rule MD005 (#1167)
    
    https://github.com/DavidAnson/markdownlint/blob/main/doc/md005.md
---
 .github/linters/.markdown-lint.yml |  1 -
 docs/community/release-manager.md  | 24 ++++++++++++------------
 2 files changed, 12 insertions(+), 13 deletions(-)

diff --git a/.github/linters/.markdown-lint.yml b/.github/linters/.markdown-lint.yml
index c180f7800..0e1f424fd 100644
--- a/.github/linters/.markdown-lint.yml
+++ b/.github/linters/.markdown-lint.yml
@@ -1,7 +1,6 @@
 # https://github.com/DavidAnson/markdownlint#rules--aliases
 MD001: false
 MD004: false
-MD005: false
 MD007: false
 MD009: false
 MD010: false
diff --git a/docs/community/release-manager.md b/docs/community/release-manager.md
index c3b546b4f..e875eba72 100644
--- a/docs/community/release-manager.md
+++ b/docs/community/release-manager.md
@@ -39,18 +39,18 @@ JAVA_HOME="${JAVA_HOME:-$(/usr/libexec/java_home -v 1.8)}" exec "/usr/local/Cell
 
 1. Install GNUGPG if it was not installed before. On Mac: `brew install gnupg gnupg2`
 2. Generate a secret key. It must be RSA4096 (4096 bits long). 
-	* Run `gpg --full-generate-key`. If not work, run `gpg --default-new-key-algo rsa4096 --gen-key`
-	* At the prompt, specify the kind of key you want: Select `RSA`, then press `enter`
-    * At the prompt, specify the key size you want: Enter `4096`
-    * At the prompt, enter the length of time the key should be valid: Press `enter` to make the key never expire.
-    * Verify that your selections are correct.
-    * Enter your user ID information: use your real name and Apache email address.
-    * Type a secure passphrase. Make sure you remember this because we will use it later.
-    * Use the `gpg --list-secret-keys --keyid-format=long` command to list the long form of the GPG keys.
-    * From the list of GPG keys, copy the long form of the GPG key ID you'd like to use (e.g., `3AA5C34371567BD2`)
-    * Run `gpg --export --armor 3AA5C34371567BD2`, substituting in the GPG key ID you'd like to use.
-    * Copy your GPG key, beginning with `-----BEGIN PGP PUBLIC KEY BLOCK-----` and ending with `-----END PGP PUBLIC KEY BLOCK-----`.
-    * There must be an empty line between `-----BEGIN PGP PUBLIC KEY BLOCK-----` and the actual key.
+   * Run `gpg --full-generate-key`. If not work, run `gpg --default-new-key-algo rsa4096 --gen-key`
+   * At the prompt, specify the kind of key you want: Select `RSA`, then press `enter`
+   * At the prompt, specify the key size you want: Enter `4096`
+   * At the prompt, enter the length of time the key should be valid: Press `enter` to make the key never expire.
+   * Verify that your selections are correct.
+   * Enter your user ID information: use your real name and Apache email address.
+   * Type a secure passphrase. Make sure you remember this because we will use it later.
+   * Use the `gpg --list-secret-keys --keyid-format=long` command to list the long form of the GPG keys.
+   * From the list of GPG keys, copy the long form of the GPG key ID you'd like to use (e.g., `3AA5C34371567BD2`)
+   * Run `gpg --export --armor 3AA5C34371567BD2`, substituting in the GPG key ID you'd like to use.
+   * Copy your GPG key, beginning with `-----BEGIN PGP PUBLIC KEY BLOCK-----` and ending with `-----END PGP PUBLIC KEY BLOCK-----`.
+   * There must be an empty line between `-----BEGIN PGP PUBLIC KEY BLOCK-----` and the actual key.
 3. Publish your armored key in major key servers: https://keyserver.pgp.com/
 
 ### 3. Use SVN to update KEYS