Skip to content

Commit

Permalink
3.4.0-dev-24
Browse files Browse the repository at this point in the history
publish-docker-image.yaml now requires success of parent workflows
  • Loading branch information
AlexInCube committed Aug 3, 2024
1 parent c9e761b commit dd4635d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
push_to_registry:
if: github.event.workflow_run.event == 'push'
if: github.event.workflow_run.event == 'push' && github.event.workflow_run.conclusion == 'success'
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
linters:
name: Run linters
name: Run Linters
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit dd4635d

Please sign in to comment.