Skip to content

Commit

Permalink
Merge pull request moby#46977 from crazy-max/fix-push-tag
Browse files Browse the repository at this point in the history
ci(bin-image): fix merge job run condition
  • Loading branch information
thaJeztah committed Dec 21, 2023
2 parents 7bc56c5 + 0252a6f commit 46f7ab8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bin-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ on:
branches:
- 'master'
- '[0-9]+.[0-9]+'
tags:
- 'v*'
pull_request:

env:
Expand Down

0 comments on commit 46f7ab8

Please sign in to comment.