Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/alioss-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
alioss-general-integration-tests:
name: Alioss General Integration Tests
runs-on: ubuntu-latest
# Skip forks and Dependabot (no access to secrets)
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
# Run on push/workflow_dispatch, skip forks and Dependabot on 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]')
steps:
- name: Checkout code
uses: actions/checkout@v6
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/azurebs-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
azurecloud-environment-integration-tests:
name: AzureCloud Environment Integration Tests
runs-on: ubuntu-latest
# Skip forks and Dependabot (no access to secrets)
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
# Run on push/workflow_dispatch, skip forks and Dependabot on 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]')
steps:
- name: Checkout code
uses: actions/checkout@v6
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/gcs-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
gcs-integration-fast-tests:
name: GCS Integation Fast Tests
runs-on: ubuntu-latest
# Skip forks and Dependabot (no access to secrets)
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
# Run on push/workflow_dispatch, skip forks and Dependabot on 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]')
steps:
- name: Checkout code
uses: actions/checkout@v6
Expand Down Expand Up @@ -48,8 +51,11 @@ jobs:
gcs-integration-all-tests:
name: GCS Integation All Tests
runs-on: ubuntu-latest
# Skip forks and Dependabot (no access to secrets)
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
# Run on push/workflow_dispatch, skip forks and Dependabot on 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]')
steps:
- name: Checkout code
uses: actions/checkout@v6
Expand Down
28 changes: 20 additions & 8 deletions .github/workflows/s3-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ jobs:
aws-s3-us-integration:
name: AWS S3 US Integration
runs-on: ubuntu-latest
# Skip forks and Dependabot (no access to secrets)
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
# Run on push/workflow_dispatch, skip forks and Dependabot on 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]')
env:
REGION_NAME: us-east-1
STACK_NAME: s3cli-iam
Expand Down Expand Up @@ -86,8 +89,11 @@ jobs:
aws-s3-public-read-integration:
name: AWS S3 Public Read Integration
runs-on: ubuntu-latest
# Skip forks and Dependabot (no access to secrets)
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
# Run on push/workflow_dispatch, skip forks and Dependabot on 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]')
env:
REGION_NAME: us-east-1
STACK_NAME: s3cli-public-bucket
Expand Down Expand Up @@ -136,8 +142,11 @@ jobs:
aws-s3-frankfurt-integration:
name: AWS S3 Frankfurt Integration
runs-on: ubuntu-latest
# Skip forks and Dependabot (no access to secrets)
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
# Run on push/workflow_dispatch, skip forks and Dependabot on 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]')
env:
REGION_NAME: eu-central-1
STACK_NAME: s3cli-private-bucket
Expand Down Expand Up @@ -186,8 +195,11 @@ jobs:
s3-compatible-integration:
name: S3 Compatible Integration
runs-on: ubuntu-latest
# Skip forks and Dependabot (no access to secrets)
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
# Run on push/workflow_dispatch, skip forks and Dependabot on 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]')
steps:
- name: Checkout code
uses: actions/checkout@v6
Expand Down
Loading