From 5ce403d348f3a0f206540795cfe271e7d6bc92ff Mon Sep 17 00:00:00 2001 From: Houssem Dellai Date: Mon, 28 Aug 2023 19:05:20 +0200 Subject: [PATCH] adding spell cheker --- .github/workflows/041-spellcheck.yml | 3 ++- README.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/041-spellcheck.yml b/.github/workflows/041-spellcheck.yml index ab5013d..92c7057 100644 --- a/.github/workflows/041-spellcheck.yml +++ b/.github/workflows/041-spellcheck.yml @@ -28,7 +28,8 @@ jobs: incremental_files_only: false # Limit the files checked to the ones in the pull request or push. verbose: false # Log progress and other information during the action execution. files: | - **/*.md + README.md + # **/*.md !dist/**/*.{ts,js} # Define glob patterns to filter the files to be checked. Use a new line between patterns to define multiple patterns. # The default is to check ALL files that were changed in in the pull_request or push. diff --git a/README.md b/README.md index 83c27cf..ebf6a5c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Github Actions course -DevOps became very important for organizations willing to automate and modernize their workloads. Thanks to its capabilities, it is never been easier create a pipeline that can do all the required steps to build 'almost' any kind of application and deploy 'almost' to any environment. All of this with a click of a button. +DevOps became very imprtant for organiztions willing to automate and modernize their workloads. Thanks to its capabilities, it is never been easier create a pipeline that can do all the required steps to build 'almost' any kind of application and deploy 'almost' to any environment. All of this with a click of a button. Not only that, using DevOps features makes it possible to secure the pipelines when managing secrets or when connecting to the target production environment. That become today what is known as DevSecOps.