Skip to content

Commit

Permalink
Fix conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
testower committed Dec 27, 2024
1 parent 35f75ad commit 8c8594a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ on:
pull_request:
branches:
- master
env:
BASE_REPO: ${{ github.event.pull_request.base.repo.clone_url }}
PR_HEAD_REPO: ${{ github.event.pull_request.head.repo.clone_url }}
jobs:
maven-verify:
if: github.repository_owner != 'entur'
if: ${{ env.BASE_REPO != env.PR_HEAD_REPO }}
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 8c8594a

Please sign in to comment.