diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..d851cc4 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @docker/supply-chain-security diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 8e62f1e..b8bf253 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,8 @@ -**What this PR does / why we need it**: +## Summary + -**Which issue(s) this PR fixes** *(optional, using `fixes #(, fixes #, ...)` format, will close the issue(s) when the PR gets merged)*: -Fixes # +### Tests + -**Special notes for your reviewer**: +### Issue + diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index d1c9153..e92b36d 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -84,17 +84,17 @@ jobs: --version ${GATEKEEPER_VERSION} \ --set enableExternalData=true \ --name-template=gatekeeper \ - --namespace gatekeeper-system \ + --namespace security \ --create-namespace \ --debug - - name: Build and install external-data-provider + - name: Build and install attest-external-data-provider run: | ./scripts/generate-tls-cert.sh make docker-buildx kind-load-image - helm install external-data-provider charts/external-data-provider \ + helm install attest-provider charts/external-data-provider \ --set provider.tls.caBundle="$(cat certs/ca.crt | base64 | tr -d '\n\r')" \ - --namespace gatekeeper-system \ + --namespace security \ --wait --debug - name: Run e2e