Skip to content

Commit

Permalink
Update deploy-quality.yaml (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
Techpurshottam authored Jun 25, 2024
2 parents 28ef2d9 + dc5012e commit f58d486
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
contents: read
packages: write
deployments: write
if: ${{ github.event_name == 'push' && (github.event.head_commit.modified || github.event.head_commit.added || github.event.head_commit.removed) && (contains(toJSON(github.event.head_commit.modified), 'libs/embed/') || contains(toJSON(github.event.head_commit.added), 'libs/embed/') || contains(toJSON(github.event.head_commit.removed), 'libs/embed/')) }}
if: ${{ (github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'impler/embed')) }}
uses: ./.github/workflows/build-embed.yml
secrets: inherit

Expand All @@ -30,7 +30,7 @@ jobs:
contents: read
packages: write
deployments: write
if: ${{ github.event_name == 'push' && (github.event.head_commit.modified || github.event.head_commit.added || github.event.head_commit.removed) && (contains(toJSON(github.event.head_commit.modified), 'apps/queue-manager/') || contains(toJSON(github.event.head_commit.added), 'apps/queue-manager/') || contains(toJSON(github.event.head_commit.removed), 'apps/queue-manager/')) }}
if: ${{ (github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'impler/queuemanager')) }}
uses: ./.github/workflows/build-queuemanager.yml
secrets: inherit

Expand All @@ -39,7 +39,7 @@ jobs:
contents: read
packages: write
deployments: write
if: ${{ github.event_name == 'push' && (github.event.head_commit.modified || github.event.head_commit.added || github.event.head_commit.removed) && (contains(toJSON(github.event.head_commit.modified), 'apps/web/') || contains(toJSON(github.event.head_commit.added), 'apps/web/') || contains(toJSON(github.event.head_commit.removed), 'apps/web/')) }}
if: ${{ (github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'impler/web')) }}
uses: ./.github/workflows/build-web.yml
secrets: inherit

Expand All @@ -48,7 +48,7 @@ jobs:
contents: read
packages: write
deployments: write
if: ${{ github.event_name == 'push' && (github.event.head_commit.modified || github.event.head_commit.added || github.event.head_commit.removed) && (contains(toJSON(github.event.head_commit.modified), 'apps/widget/') || contains(toJSON(github.event.head_commit.added), 'apps/widget/') || contains(toJSON(github.event.head_commit.removed), 'apps/widget/')) }}
if: ${{ (github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'impler/widget')) }}
uses: ./.github/workflows/build-widget.yml
secrets: inherit

Expand Down

0 comments on commit f58d486

Please sign in to comment.