diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ef5b0b0b..8c6721af 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -3,6 +3,9 @@ name: build on: push: branches: [ master ] + paths-ignore: + # Do not run the pipeline if only Markdown files changed + - '**.md' jobs: once: name: Create release diff --git a/.github/workflows/build_dev.yaml b/.github/workflows/build_dev.yaml index 01c92f14..64888aa0 100644 --- a/.github/workflows/build_dev.yaml +++ b/.github/workflows/build_dev.yaml @@ -3,6 +3,9 @@ name: build-dev on: push: branches: [ dev ] + paths-ignore: + # Do not run the pipeline if only Markdown files changed + - '**.md' jobs: build: name: Create cross-platform dev build diff --git a/.github/workflows/pr_checks.yaml b/.github/workflows/pr_checks.yaml index 87d288eb..b9e5aa5d 100644 --- a/.github/workflows/pr_checks.yaml +++ b/.github/workflows/pr_checks.yaml @@ -4,6 +4,9 @@ on: pull_request: branches: [ master, dev ] types: [ edited, opened, synchronize, reopened ] + paths-ignore: + # Do not run the pipeline if only Markdown files changed + - '**.md' jobs: build: name: Create cross-platform build @@ -90,4 +93,4 @@ jobs: RELEASE: v2.0.${{ github.run_number }} KUBESCAPE_SKIP_UPDATE_CHECK: "true" run: python3 smoke_testing/init.py ${PWD}/build/${{ matrix.os }}/kubescape - \ No newline at end of file + diff --git a/README.md b/README.md index fb9653e4..aa355e3a 100644 --- a/README.md +++ b/README.md @@ -111,10 +111,10 @@ Set-ExecutionPolicy RemoteSigned -scope CurrentUser ## Install on macOS 1. ```sh - brew tap armosec/kubescape + brew tap kubescape/tap ``` 2. ```sh - brew install kubescape + brew install kubescape-cli ```