Skip to content

Commit

Permalink
only trigger kind validation if kind files are changed
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdotcosta committed Apr 22, 2024
1 parent a4b3919 commit a9b1d84
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr-kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
kind-test-docker-linux:
name: Deploy Docker Linux
if: needs.scheck-if-kind-changed.outputs.kind_grep_result > 0
if: needs.check-if-kind-changed.outputs.kind_grep_result > 0
needs: check-if-kind-changed
runs-on: ${{ matrix.os }}
env:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
kind-test-docker-macos:
name: Deploy Docker MacOS
if: needs.scheck-if-kind-changed.outputs.kind_grep_result > 0
if: needs.check-if-kind-changed.outputs.kind_grep_result > 0
needs: check-if-kind-changed
runs-on: ${{ matrix.os }}
env:
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
kind-test-podman-rootless-linux:
name: Deploy Podman Rootless Linux
if: false
# if: needs.scheck-if-kind-changed.outputs.kind_grep_result > 0
# if: needs.check-if-kind-changed.outputs.kind_grep_result > 0
needs: check-if-kind-changed
runs-on: ${{ matrix.os }}
env:
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
kind-test-podman-rootless-macos:
name: Deploy Podman Rootless MacOS
if: false
# if: needs.scheck-if-kind-changed.outputs.kind_grep_result > 0
# if: needs.check-if-kind-changed.outputs.kind_grep_result > 0
needs: check-if-kind-changed
runs-on: ${{ matrix.os }}
env:
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
kind-test-podman-rootful-linux:
name: Deploy Podman Rootful Linux
if: needs.scheck-if-kind-changed.outputs.kind_grep_result > 0
if: needs.check-if-kind-changed.outputs.kind_grep_result > 0
needs: check-if-kind-changed
runs-on: ${{ matrix.os }}
env:
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
kind-test-podman-rootful-macos:
name: Deploy Podman Rootful MacOS
if: false
# if: needs.scheck-if-kind-changed.outputs.kind_grep_result > 0
# if: needs.check-if-kind-changed.outputs.kind_grep_result > 0
needs: check-if-kind-changed
runs-on: ${{ matrix.os }}
env:
Expand Down

0 comments on commit a9b1d84

Please sign in to comment.