diff --git a/.github/workflows/code_validation.yml b/.github/workflows/code_validation.yml index bd91b70c..3bdb8891 100644 --- a/.github/workflows/code_validation.yml +++ b/.github/workflows/code_validation.yml @@ -15,6 +15,7 @@ concurrency: jobs: validate: runs-on: ubuntu-latest + if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/json_validation.yml b/.github/workflows/json_validation.yml index 1bd9c90f..a0a82554 100644 --- a/.github/workflows/json_validation.yml +++ b/.github/workflows/json_validation.yml @@ -25,6 +25,7 @@ concurrency: jobs: validate: runs-on: ubuntu-latest + if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b8cfaafe..9dee5862 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,6 +16,7 @@ jobs: tests: name: App Tests runs-on: ubuntu-latest + if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: # Setup OSM website