Skip to content

Commit

Permalink
Let PR init and build run in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Oct 31, 2024
1 parent dd6199d commit 256ff20
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ jobs:

builds:
name: Builds
needs: [init]
if: "!github.event.pull_request.head.repo.fork"
runs-on: ubuntu-24.04
permissions:
packages: write
Expand All @@ -96,8 +94,7 @@ jobs:

deploys:
name: Deploys
if: "!github.event.pull_request.head.repo.fork"
needs: [builds]
needs: [builds, init]
runs-on: ubuntu-24.04
strategy:
matrix:
Expand Down

0 comments on commit 256ff20

Please sign in to comment.