We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ec5cf commit cd79133Copy full SHA for cd79133
.github/workflows/reviewdog.yml
@@ -79,6 +79,13 @@ jobs:
79
runs-on: ubuntu-latest
80
steps:
81
- uses: actions/checkout@v4
82
- - run: |
+ - name: check on release branch
83
+ if: ${{ contains(github.head_ref, 'release-') || contains(github.base_ref, 'release-') }}
84
+ run: |
85
+ make generate manifests VERSION="$(grep "Version" version/version.go|grep -oE "[0-9]+\.[0-9]+\.[0-9]+")" IMAGE_TAG_BASE="percona/percona-server-mongodb-operator"
86
+ git diff --exit-code
87
+ - name: check on non release branches
88
+ if: ${{ ! (contains(github.head_ref, 'release-') || contains(github.base_ref, 'release-')) }}
89
90
make generate manifests VERSION=main
91
git diff --exit-code
0 commit comments