SRVKE-1743 Add EventTransform to SO e2e test #236
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CSV revision check | |
on: | |
pull_request: | |
paths: | |
- 'olm-catalog/serverless-operator/manifests/serverless-operator.clusterserviceversion.yaml' | |
branches: | |
- 'main' | |
- 'release-*' | |
jobs: | |
csv-revision-check: | |
name: CSV component revision alignment check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Golang | |
uses: openshift-knative/hack/actions/setup-go@main | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install yq | |
run: | | |
go install github.com/mikefarah/yq/v3@latest | |
- name: Revision check | |
run: make verify-csv-revisions |