From 05b1c8b8a1757316fcf3ba764387dbc27fcfc000 Mon Sep 17 00:00:00 2001 From: Daniel Scholl Date: Tue, 16 Jan 2024 10:43:54 -0600 Subject: [PATCH 1/5] Updated Labeler configuration. --- .github/labeler.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index f40f86fd..86984f8a 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,13 +1,13 @@ -Documentation: -- changed-files: - - any-glob-to-any-file: ['docs/**', '**/*.md'] - Infrastructure: -- changed-files: - - any-glob-to-any-file: ['bicep/**'] - - all-globs-to-all-files: '!bicep/*.md' + - bicep/main.js + - bicep/private/modules/**/* + +# Add 'documentation' label to any change to *.md files +Documentation: + - "*.md" + - "docs/*.md" Software: -- changed-files: - - any-glob-to-any-file: ['software/**', 'stamp/**', 'charts/**'] - - all-globs-to-all-files: ['!software/*.md', '!stamp/*.md', '!charts/*.md'] \ No newline at end of file + - software/**/* + - stamp/**/* + - charts/**/* \ No newline at end of file From 121738cbe995feea5b70ffe2fb011ae68c5d9307 Mon Sep 17 00:00:00 2001 From: Daniel Scholl Date: Tue, 16 Jan 2024 11:18:45 -0600 Subject: [PATCH 2/5] Changed configuration and adding in default folders. --- .github/labeler.yml | 18 ++++++++---------- bicep/README.md | 1 + charts/README.MD | 1 + docs/Readme.md | 1 + software/README.md | 1 + stamp/README.md | 1 + 6 files changed, 13 insertions(+), 10 deletions(-) create mode 100644 bicep/README.md create mode 100644 charts/README.MD create mode 100644 docs/Readme.md create mode 100644 software/README.md create mode 100644 stamp/README.md diff --git a/.github/labeler.yml b/.github/labeler.yml index 86984f8a..c3baa53c 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,13 +1,11 @@ -Infrastructure: - - bicep/main.js - - bicep/private/modules/**/* - -# Add 'documentation' label to any change to *.md files Documentation: - - "*.md" - - "docs/*.md" +- changed-files: + - any-glob-to-any-file: ['docs/*', '**/*.md'] Software: - - software/**/* - - stamp/**/* - - charts/**/* \ No newline at end of file +- changed-files: + - any-glob-to-any-file: ['software/**/*', 'stamp/**/*', 'charts/**/*'] + +Infrastructure: +- changed-files: + - any-glob-to-any-file: ['bicep/**/*', 'infrastructure/**/*'] diff --git a/bicep/README.md b/bicep/README.md new file mode 100644 index 00000000..5aff038d --- /dev/null +++ b/bicep/README.md @@ -0,0 +1 @@ +# Infrastructure Code \ No newline at end of file diff --git a/charts/README.MD b/charts/README.MD new file mode 100644 index 00000000..d59d935d --- /dev/null +++ b/charts/README.MD @@ -0,0 +1 @@ +# Helm Charts \ No newline at end of file diff --git a/docs/Readme.md b/docs/Readme.md new file mode 100644 index 00000000..7d8b3af5 --- /dev/null +++ b/docs/Readme.md @@ -0,0 +1 @@ +# Documentation \ No newline at end of file diff --git a/software/README.md b/software/README.md new file mode 100644 index 00000000..ef57a80f --- /dev/null +++ b/software/README.md @@ -0,0 +1 @@ +# Gitops Application Configuration \ No newline at end of file diff --git a/stamp/README.md b/stamp/README.md new file mode 100644 index 00000000..7e2e6b0c --- /dev/null +++ b/stamp/README.md @@ -0,0 +1 @@ +# Gitops Platform Configuration \ No newline at end of file From 444a1feda52cebd7e9a727733c018436270212e6 Mon Sep 17 00:00:00 2001 From: Daniel Scholl Date: Tue, 16 Jan 2024 11:24:23 -0600 Subject: [PATCH 3/5] Changed configuration and adding in default folders. --- .github/workflows/documentation.yml | 2 +- .github/workflows/label.yml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index b198f759..f1900211 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -20,5 +20,5 @@ jobs: - name: Check spelling of markdown files uses: crate-ci/typos@master with: - files: ./*.md + files: ./**/*.md config: ./.github/_typos.toml \ No newline at end of file diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index 2d66392e..0735e3fc 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -17,4 +17,6 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/labeler@v5 \ No newline at end of file + - uses: actions/labeler@v5 + with: + configuration-path: './github/labeler.yml' \ No newline at end of file From 7a5cad63f3049d6d2eb11bb5f8cbc1a487c44175 Mon Sep 17 00:00:00 2001 From: Daniel Scholl Date: Tue, 16 Jan 2024 11:26:02 -0600 Subject: [PATCH 4/5] Checking misspelling. --- docs/Readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Readme.md b/docs/Readme.md index 7d8b3af5..bd8500f3 100644 --- a/docs/Readme.md +++ b/docs/Readme.md @@ -1 +1,3 @@ -# Documentation \ No newline at end of file +# Documentation + +Check a misspellled word. \ No newline at end of file From 747f864ea8616bde7715cf8e2236f7307cecbceb Mon Sep 17 00:00:00 2001 From: Daniel Scholl Date: Tue, 16 Jan 2024 11:28:04 -0600 Subject: [PATCH 5/5] Removed misspelling. --- docs/Readme.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/Readme.md b/docs/Readme.md index bd8500f3..25f8d456 100644 --- a/docs/Readme.md +++ b/docs/Readme.md @@ -1,3 +1 @@ # Documentation - -Check a misspellled word. \ No newline at end of file