Skip to content

Commit

Permalink
fix(ci): check if fork pr to skip docker build jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
dhommen committed Jan 24, 2024
1 parent e5fee02 commit 39440ad
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ jobs:
USERNAME: ${{ github.actor }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: "Docker Image: edc-dev"
if: ${{ github.event.pull_request.head.repo.full_name == 'org/repo' }}
uses: ./.github/actions/build-connector-image
with:
registry-url: ${{ env.REGISTRY_URL }}
Expand All @@ -99,6 +100,7 @@ jobs:
title: "sovity Dev EDC Connector"
description: "Extended EDC Connector built by sovity. This dev version contains no dataspace auth and can be used to quickly start a locally running EDC + EDC UI."
- name: "Docker Image: edc-ce"
if: ${{ github.event.pull_request.head.repo.full_name == 'org/repo' }}
uses: ./.github/actions/build-connector-image
with:
registry-url: ${{ env.REGISTRY_URL }}
Expand All @@ -110,6 +112,7 @@ jobs:
title: "sovity Community Edition EDC Connector"
description: "EDC Connector built by sovity. Contains sovity's Community Edition EDC extensions and requires dataspace credentials to join an existing dataspace."
- name: "Docker Image: edc-ce-mds"
if: ${{ github.event.pull_request.head.repo.full_name == 'org/repo' }}
uses: ./.github/actions/build-connector-image
with:
registry-url: ${{ env.REGISTRY_URL }}
Expand All @@ -121,6 +124,7 @@ jobs:
title: "MDS Community Edition EDC Connector"
description: "EDC Connector built by sovity and configured for compatibility with the Mobility Data Space (MDS). This EDC requires dataspace credentials, and additional MDS Services such as a Clearing House."
- name: "Docker Image: test-backend"
if: ${{ github.event.pull_request.head.repo.full_name == 'org/repo' }}
uses: ./.github/actions/build-connector-image
with:
registry-url: ${{ env.REGISTRY_URL }}
Expand Down

0 comments on commit 39440ad

Please sign in to comment.