From 4114730d91602d5e4c55f408f16964ce5817cc4b Mon Sep 17 00:00:00 2001 From: Amir Malka Date: Mon, 15 Aug 2022 14:12:43 +0300 Subject: [PATCH 1/2] Updated brew commands --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ``` From 29b431009c76279d3abb551364422ad54c4e3b52 Mon Sep 17 00:00:00 2001 From: Amir Malka Date: Mon, 15 Aug 2022 14:16:41 +0300 Subject: [PATCH 2/2] Ignore markdown changes in workflows --- .github/workflows/build.yaml | 3 +++ .github/workflows/build_dev.yaml | 3 +++ .github/workflows/pr_checks.yaml | 5 ++++- 3 files changed, 10 insertions(+), 1 deletion(-) 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 +