Merge pull request #46977 from crazy-max/fix-push-tag

ci(bin-image): fix merge job run condition
This commit is contained in:
Sebastiaan van Stijn 2023-12-21 22:35:40 +01:00 committed by GitHub
commit 46f7ab808b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View file

@ -144,9 +144,9 @@ jobs:
merge:
runs-on: ubuntu-20.04
if: github.event_name != 'pull_request' && github.repository == 'moby/moby'
needs:
- build
if: always() && !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled') && github.event_name != 'pull_request' && github.repository == 'moby/moby'
steps:
-
name: Download meta bake definition

View file

@ -10,8 +10,6 @@ on:
branches:
- 'master'
- '[0-9]+.[0-9]+'
tags:
- 'v*'
pull_request:
env: