From c9e81743d7375df7bfc34de708ceda6a6db14c2e Mon Sep 17 00:00:00 2001 From: Stephan Merker Date: Tue, 14 Jul 2026 11:22:16 +0200 Subject: [PATCH] Enable integration tests for dependabot PRs - part 2 --- .github/workflows/alioss-integration.yml | 2 +- .github/workflows/azurebs-integration.yml | 2 +- .github/workflows/gcs-integration.yml | 6 +++--- .github/workflows/s3-integration.yml | 10 +++++----- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/alioss-integration.yml b/.github/workflows/alioss-integration.yml index 3d17ce4..2f9911a 100644 --- a/.github/workflows/alioss-integration.yml +++ b/.github/workflows/alioss-integration.yml @@ -20,7 +20,7 @@ jobs: alioss-general-integration-tests: name: Alioss General Integration Tests runs-on: ubuntu-latest - # Run on push/workflow_dispatch, skip forks and Dependabot on PRs + # Run on push/workflow_dispatch, skip fork PRs if: | github.event_name == 'push' || github.event_name == 'workflow_dispatch' || diff --git a/.github/workflows/azurebs-integration.yml b/.github/workflows/azurebs-integration.yml index b12777b..5f51562 100644 --- a/.github/workflows/azurebs-integration.yml +++ b/.github/workflows/azurebs-integration.yml @@ -20,7 +20,7 @@ jobs: azurecloud-environment-integration-tests: name: AzureCloud Environment Integration Tests runs-on: ubuntu-latest - # Run on push/workflow_dispatch, skip forks and Dependabot on PRs + # Run on push/workflow_dispatch, skip fork PRs if: | github.event_name == 'push' || github.event_name == 'workflow_dispatch' || diff --git a/.github/workflows/gcs-integration.yml b/.github/workflows/gcs-integration.yml index 9e5c61e..42250cd 100644 --- a/.github/workflows/gcs-integration.yml +++ b/.github/workflows/gcs-integration.yml @@ -20,11 +20,11 @@ jobs: gcs-integration-fast-tests: name: GCS Integation Fast Tests runs-on: ubuntu-latest - # Run on push/workflow_dispatch, skip forks and Dependabot on PRs + # Run on push/workflow_dispatch, skip fork PRs if: | github.event_name == 'push' || github.event_name == 'workflow_dispatch' || - (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]') + (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) steps: - name: Checkout code uses: actions/checkout@v7 @@ -55,7 +55,7 @@ jobs: gcs-integration-all-tests: name: GCS Integation All Tests runs-on: ubuntu-latest - # Run on push/workflow_dispatch, skip forks and Dependabot on PRs + # Run on push/workflow_dispatch, skip fork PRs if: | github.event_name == 'push' || github.event_name == 'workflow_dispatch' || diff --git a/.github/workflows/s3-integration.yml b/.github/workflows/s3-integration.yml index a8442fd..242a9c6 100644 --- a/.github/workflows/s3-integration.yml +++ b/.github/workflows/s3-integration.yml @@ -20,7 +20,7 @@ jobs: aws-s3-us-integration: name: AWS S3 US Integration runs-on: ubuntu-latest - # Run on push/workflow_dispatch, skip forks and Dependabot on PRs + # Run on push/workflow_dispatch, skip fork PRs if: | github.event_name == 'push' || github.event_name == 'workflow_dispatch' || @@ -88,11 +88,11 @@ jobs: aws-s3-regional-integration: name: AWS S3 ${{ matrix.name }} Integration runs-on: ubuntu-latest - # Run on push/workflow_dispatch, skip forks and Dependabot on PRs + # Run on push/workflow_dispatch, skip fork PRs if: | github.event_name == 'push' || github.event_name == 'workflow_dispatch' || - (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]') + (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) strategy: fail-fast: false matrix: @@ -153,11 +153,11 @@ jobs: s3-compatible-integration: name: S3 Compatible Integration runs-on: ubuntu-latest - # Run on push/workflow_dispatch, skip forks and Dependabot on PRs + # Run on push/workflow_dispatch, skip fork PRs if: | github.event_name == 'push' || github.event_name == 'workflow_dispatch' || - (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]') + (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) steps: - name: Checkout code uses: actions/checkout@v7