Skip to content

Commit ffc9082

Browse files
committed
fix: remove artifact download from builds job
The fork-handler is the single blocking workflow. Builds job should not handle fork-specific logic.
1 parent 632e2b6 commit ffc9082

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

.github/workflows/pr-open.yml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,6 @@ jobs:
3131
package: [backend, frontend, migrations]
3232
timeout-minutes: 10
3333
steps:
34-
- name: Download fork code artifact (if fork)
35-
id: download-fork-artifact
36-
if: needs.fork-handler.outputs.is_fork == 'true'
37-
uses: actions/download-artifact@v6
38-
continue-on-error: true
39-
with:
40-
name: fork-code
41-
path: .
42-
4334
- uses: bcgov/action-builder-ghcr@2b24ac7f95e6a019064151498660437cca3202c5 # v4.2.1
4435
with:
4536
package: ${{ matrix.package }}
@@ -62,10 +53,10 @@ jobs:
6253
db_triggers: ('charts/crunchy/')
6354

6455
tests:
65-
name: Tests
66-
if: needs.deploys.outputs.triggered == 'true'
67-
needs: [fork-handler, deploys]
68-
uses: ./.github/workflows/.tests.yml
56+
name: Tests
57+
if: needs.deploys.outputs.triggered == 'true'
58+
needs: [fork-handler, deploys]
59+
uses: ./.github/workflows/.tests.yml
6960

7061
results:
7162
name: PR Results

0 commit comments

Comments
 (0)