From 9ab61830854057aae7e9a3a60e4ed29e5b1556cc Mon Sep 17 00:00:00 2001 From: Stephan Merker Date: Mon, 13 Jul 2026 17:57:42 +0200 Subject: [PATCH] Enable integration tests for dependabot PRs - requires extra secrets for dependabot --- .github/workflows/alioss-integration.yml | 2 +- .github/workflows/azurebs-integration.yml | 2 +- .github/workflows/dav-integration.yml | 2 +- .github/workflows/gcs-integration.yml | 2 +- .github/workflows/s3-integration.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/alioss-integration.yml b/.github/workflows/alioss-integration.yml index b0e7eec..3d17ce4 100644 --- a/.github/workflows/alioss-integration.yml +++ b/.github/workflows/alioss-integration.yml @@ -24,7 +24,7 @@ jobs: 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 diff --git a/.github/workflows/azurebs-integration.yml b/.github/workflows/azurebs-integration.yml index 0617adb..b12777b 100644 --- a/.github/workflows/azurebs-integration.yml +++ b/.github/workflows/azurebs-integration.yml @@ -24,7 +24,7 @@ jobs: 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 diff --git a/.github/workflows/dav-integration.yml b/.github/workflows/dav-integration.yml index 50a633f..298f733 100644 --- a/.github/workflows/dav-integration.yml +++ b/.github/workflows/dav-integration.yml @@ -23,7 +23,7 @@ jobs: 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 diff --git a/.github/workflows/gcs-integration.yml b/.github/workflows/gcs-integration.yml index 8ff4bcc..9e5c61e 100644 --- a/.github/workflows/gcs-integration.yml +++ b/.github/workflows/gcs-integration.yml @@ -59,7 +59,7 @@ jobs: 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 diff --git a/.github/workflows/s3-integration.yml b/.github/workflows/s3-integration.yml index 05af256..a8442fd 100644 --- a/.github/workflows/s3-integration.yml +++ b/.github/workflows/s3-integration.yml @@ -24,7 +24,7 @@ jobs: 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) env: REGION_NAME: us-east-1 STACK_NAME: s3cli-iam