diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-05-01 22:32:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-01 22:32:30 +0200 |
commit | 697ec8f6f0ac8f251fd7f3f3bb5e21313ca62207 (patch) | |
tree | 00f864fdefaccf962fcc93af4c20a07b1d9118fa | |
parent | 277042fd16a862e13718c597366d41f46ffb80a5 (diff) | |
parent | f8be69e1f3bd7e9961283985dde2e6dac66ea205 (diff) | |
download | podman-697ec8f6f0ac8f251fd7f3f3bb5e21313ca62207.tar.gz podman-697ec8f6f0ac8f251fd7f3f3bb5e21313ca62207.tar.bz2 podman-697ec8f6f0ac8f251fd7f3f3bb5e21313ca62207.zip |
Merge pull request #10183 from cevich/fix_multi_arch_syntax
Fix multi-arch image workflow typo
-rw-r--r-- | .github/workflows/multi-arch-build.yaml | 2 | ||||
-rwxr-xr-x | contrib/cirrus/pr-should-include-tests | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/multi-arch-build.yaml b/.github/workflows/multi-arch-build.yaml index 5bf807013..2a86bab7e 100644 --- a/.github/workflows/multi-arch-build.yaml +++ b/.github/workflows/multi-arch-build.yaml @@ -62,7 +62,7 @@ jobs: # Simple verification that stable images work, and # also grab version number use in forming the FQIN. - name: amd64 container sniff test - if: matrix.source = 'stable' + if: matrix.source == 'stable' id: sniff_test run: | VERSION_OUTPUT="$(docker run localhost:5000/podman/${{ matrix.source }} \ diff --git a/contrib/cirrus/pr-should-include-tests b/contrib/cirrus/pr-should-include-tests index 9ccac17a3..392136fdb 100755 --- a/contrib/cirrus/pr-should-include-tests +++ b/contrib/cirrus/pr-should-include-tests @@ -39,6 +39,7 @@ filtered_changes=$(git diff --name-status $base $head | fgrep -vx go.mod | fgrep -vx go.sum | egrep -v '^[^/]+\.md$' | + egrep -v '^.github' | egrep -v '^contrib/' | egrep -v '^docs/' | egrep -v '^hack/' | |