From 4608f8bae9b7d794c692ee5747b0fc36c3d1be3c Mon Sep 17 00:00:00 2001 From: LizenzFass78851 <82592556+LizenzFass78851@users.noreply.github.com> Date: Mon, 29 Apr 2024 09:22:49 +0200 Subject: [PATCH] move markdown workflow Templates to .github dir --- {Template => .github/markdown_templates}/Blocklisten.md/01 | 0 {Template => .github/markdown_templates}/Blocklisten.md/02 | 0 {Template => .github/markdown_templates}/DNSMASQ/readme.md/01 | 0 {Template => .github/markdown_templates}/DNSMASQ/readme.md/02 | 0 {Template => .github/markdown_templates}/readme.md | 0 .github/scripts/gen_blocklisten.md.sh | 4 ++-- .github/scripts/gen_dnsmasq_readme.md.sh | 4 ++-- .github/workflows/gen_md_files.yml | 4 ++-- 8 files changed, 6 insertions(+), 6 deletions(-) rename {Template => .github/markdown_templates}/Blocklisten.md/01 (100%) rename {Template => .github/markdown_templates}/Blocklisten.md/02 (100%) rename {Template => .github/markdown_templates}/DNSMASQ/readme.md/01 (100%) rename {Template => .github/markdown_templates}/DNSMASQ/readme.md/02 (100%) rename {Template => .github/markdown_templates}/readme.md (100%) diff --git a/Template/Blocklisten.md/01 b/.github/markdown_templates/Blocklisten.md/01 similarity index 100% rename from Template/Blocklisten.md/01 rename to .github/markdown_templates/Blocklisten.md/01 diff --git a/Template/Blocklisten.md/02 b/.github/markdown_templates/Blocklisten.md/02 similarity index 100% rename from Template/Blocklisten.md/02 rename to .github/markdown_templates/Blocklisten.md/02 diff --git a/Template/DNSMASQ/readme.md/01 b/.github/markdown_templates/DNSMASQ/readme.md/01 similarity index 100% rename from Template/DNSMASQ/readme.md/01 rename to .github/markdown_templates/DNSMASQ/readme.md/01 diff --git a/Template/DNSMASQ/readme.md/02 b/.github/markdown_templates/DNSMASQ/readme.md/02 similarity index 100% rename from Template/DNSMASQ/readme.md/02 rename to .github/markdown_templates/DNSMASQ/readme.md/02 diff --git a/Template/readme.md b/.github/markdown_templates/readme.md similarity index 100% rename from Template/readme.md rename to .github/markdown_templates/readme.md diff --git a/.github/scripts/gen_blocklisten.md.sh b/.github/scripts/gen_blocklisten.md.sh index 5106d171b..8e788aa4d 100755 --- a/.github/scripts/gen_blocklisten.md.sh +++ b/.github/scripts/gen_blocklisten.md.sh @@ -5,8 +5,8 @@ set -e # Beende das Skript bei einem Fehler SUCHVERZEICHNIS=Blocklisten PATCHTHEFILE=Blocklisten.md -TEMPLATE_S1=./Template/$PATCHTHEFILE/01 -TEMPLATE_S2=./Template/$PATCHTHEFILE/02 +TEMPLATE_S1=./.github/markdown_templates/$PATCHTHEFILE/01 +TEMPLATE_S2=./.github/markdown_templates/$PATCHTHEFILE/02 LINKS=/tmp/$SUCHVERZEICHNIS.txt diff --git a/.github/scripts/gen_dnsmasq_readme.md.sh b/.github/scripts/gen_dnsmasq_readme.md.sh index 932244a30..ad8f3094f 100755 --- a/.github/scripts/gen_dnsmasq_readme.md.sh +++ b/.github/scripts/gen_dnsmasq_readme.md.sh @@ -5,8 +5,8 @@ set -e # Beende das Skript bei einem Fehler SUCHVERZEICHNIS=DNSMASQ PATCHTHEFILE=readme.md -TEMPLATE_S1=./Template/$SUCHVERZEICHNIS/$PATCHTHEFILE/01 -TEMPLATE_S2=./Template/$SUCHVERZEICHNIS/$PATCHTHEFILE/02 +TEMPLATE_S1=./.github/markdown_templates/$SUCHVERZEICHNIS/$PATCHTHEFILE/01 +TEMPLATE_S2=./.github/markdown_templates/$SUCHVERZEICHNIS/$PATCHTHEFILE/02 LINKS=/tmp/$SUCHVERZEICHNIS.txt diff --git a/.github/workflows/gen_md_files.yml b/.github/workflows/gen_md_files.yml index 387253125..bd9e15c8e 100644 --- a/.github/workflows/gen_md_files.yml +++ b/.github/workflows/gen_md_files.yml @@ -7,10 +7,10 @@ on: - '.github/workflows/gen_md_files.yml' - '.github/scripts/gen_blocklisten.md.sh' - - 'Template/Blocklisten.md/*' + - '.github/markdown_templates/Blocklisten.md/*' - '.github/scripts/gen_dnsmasq_readme.md.sh' - - 'Template/DNSMASQ/readme.md/*' + - '.github/markdown_templates/DNSMASQ/readme.md/*' schedule: - cron: '20 12 * * *'