From c046ada333616d3e8bcc437ab25d5ed0018de405 Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Thu, 11 Mar 2021 11:37:16 +0100 Subject: [PATCH] some wiki polish --- .github/docs/{legal => about}/Apach2-licence.md | 0 .github/docs/{ => about}/FAQ.md | 0 .github/docs/{legal => about}/License-headers.md | 0 .github/docs/{ => about}/maintainers-wanted.md | 0 .github/docs/index.md | 1 + .github/workflows/wiki-create-docs.yaml | 14 ++++++-------- 6 files changed, 7 insertions(+), 8 deletions(-) rename .github/docs/{legal => about}/Apach2-licence.md (100%) rename .github/docs/{ => about}/FAQ.md (100%) rename .github/docs/{legal => about}/License-headers.md (100%) rename .github/docs/{ => about}/maintainers-wanted.md (100%) create mode 100644 .github/docs/index.md diff --git a/.github/docs/legal/Apach2-licence.md b/.github/docs/about/Apach2-licence.md similarity index 100% rename from .github/docs/legal/Apach2-licence.md rename to .github/docs/about/Apach2-licence.md diff --git a/.github/docs/FAQ.md b/.github/docs/about/FAQ.md similarity index 100% rename from .github/docs/FAQ.md rename to .github/docs/about/FAQ.md diff --git a/.github/docs/legal/License-headers.md b/.github/docs/about/License-headers.md similarity index 100% rename from .github/docs/legal/License-headers.md rename to .github/docs/about/License-headers.md diff --git a/.github/docs/maintainers-wanted.md b/.github/docs/about/maintainers-wanted.md similarity index 100% rename from .github/docs/maintainers-wanted.md rename to .github/docs/about/maintainers-wanted.md diff --git a/.github/docs/index.md b/.github/docs/index.md new file mode 100644 index 00000000000..291ca3867f1 --- /dev/null +++ b/.github/docs/index.md @@ -0,0 +1 @@ +# Home diff --git a/.github/workflows/wiki-create-docs.yaml b/.github/workflows/wiki-create-docs.yaml index 66afc6f1f9f..aec06a9fb04 100644 --- a/.github/workflows/wiki-create-docs.yaml +++ b/.github/workflows/wiki-create-docs.yaml @@ -38,21 +38,19 @@ jobs: run: | rm -Rf wiki/content mkdir -p wiki/content - mkdir -p wiki/content/development - mkdir -p wiki/content/Other-Licences cp -f wiki/CNAME wiki/content/CNAME - name: Create general wiki run: | cd master cp -Rf .github/docs/* ../wiki/content/ - cp .github/README.md ../wiki/content/index.md || echo "readme copy failed, continuing..." - cp .github/CODE_OF_CONDUCT ../wiki/content/code_of_conduct.md || echo "CODE_OF_CONDUCT copy failed, continuing..." + cp .github/README.md ../wiki/content/about/index.md || echo "readme copy failed, continuing..." + cp .github/CODE_OF_CONDUCT ../wiki/content/about/code_of_conduct.md || echo "CODE_OF_CONDUCT copy failed, continuing..." cp .github/CONTRIBUTING ../wiki/content/development/contributing.md || echo "CONTRIBUTING copy failed, continuing..." - cp LICENSE ../wiki/content/legal/LICENSE.md || echo "license copy failed, continuing..." - sed -i '1s/^/# License
\n\n/' ../wiki/content/legal/LICENSE.md - cp NOTICE ../wiki/content/legal/NOTICE.md || echo "license copy failed, continuing..." - sed -i '1s/^/# NOTICE
\n\n/' ../wiki/content/legal/NOTICE.md + cp LICENSE ../wiki/content/about/LICENSE.md || echo "license copy failed, continuing..." + sed -i '1s/^/# License
\n\n/' ../wiki/content/about/LICENSE.md + cp NOTICE ../wiki/content/about/NOTICE.md || echo "license copy failed, continuing..." + sed -i '1s/^/# NOTICE
\n\n/' ../wiki/content/about/NOTICE.md ls ../wiki/content/ cd ..