Skip to content

Commit

Permalink
Try this
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweininger committed Sep 29, 2023
1 parent 5c916bd commit 73a2fe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
packages: ${{ steps.filter.outputs.changes }}

Build:
if: ${{ fromJson(needs.ChangedPackages.outputs.packages)[0] != null }}
# Use template from https://github.com/microsoft/vscode-azuretools/blob/main/.github/workflows/jobs.yml
uses: ./.github/workflows/jobs.yml
needs: [ChangedPackages]
Expand All @@ -44,8 +45,7 @@ jobs:
CheckResults:
# Require all jobs under `build` to have succeeded
# See https://github.com/orgs/community/discussions/26822
if: ${{ fromJson(needs.ChangedPackages.outputs.packages)[0] != null }}
needs: [Build, ChangedPackages]
needs: [Build]
runs-on: ubuntu-latest
steps:
- run: exit 1
Expand Down

0 comments on commit 73a2fe0

Please sign in to comment.