Skip to content

Commit

Permalink
Merge branch 'kyverno:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
epasham authored Aug 30, 2024
2 parents f764583 + 8e0d924 commit ee4741c
Show file tree
Hide file tree
Showing 9 changed files with 1,455 additions and 61 deletions.
1 change: 1 addition & 0 deletions .chainsaw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ spec:
fullName: true
forceTerminationGracePeriod: 5s
delayBeforeCleanup: 3s

3 changes: 3 additions & 0 deletions .github/workflows/cel-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ jobs:
- ^other-cel$/^[s-z]
- ^pod-security-cel$
- ^psa-cel$
- ^psp-migration-cel$
- ^traefik-cel$
- ^tekton-cel$
- ^velero-cel$
runs-on: ubuntu-latest
name: ${{ matrix.k8s-version.name }} - ${{ matrix.tests }}
steps:
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/check-codegen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Verify codegen

permissions: {}

on:
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
verify-e2e-workflow:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: .hack/chainsaw-matrix/go.mod
cache-dependency-path: .hack/chainsaw-matrix/go.sum
- name: Generate workflow
run: |
set -e
(cd .hack/chainsaw-matrix && go run . > ../../.github/workflows/test.yml)
- name: Check diff
run: |
set -e
git --no-pager diff .
git diff --quiet --exit-code .
Loading

0 comments on commit ee4741c

Please sign in to comment.