From 7bb036071f3ac3c26f1e83dc334104171891167b Mon Sep 17 00:00:00 2001 From: Alex Anderson <191496+alxndrsn@users.noreply.github.com> Date: Tue, 10 Dec 2024 08:44:35 +0300 Subject: [PATCH] ci: run github actions on pull requests from forks (#1335) This may introduce duplicate builds for PRs from branches within the same repo. For extended discussion on this issue, see #1315 Closes #1308 --- .github/workflows/oidc-e2e.yml | 4 +++- .github/workflows/oidc-integration.yml | 4 +++- .github/workflows/s3-e2e.yml | 4 +++- .github/workflows/standard-e2e.yml | 4 +++- .github/workflows/standard-suite.yml | 4 +++- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/oidc-e2e.yml b/.github/workflows/oidc-e2e.yml index b152a6e7e..e986b2c1a 100644 --- a/.github/workflows/oidc-e2e.yml +++ b/.github/workflows/oidc-e2e.yml @@ -1,6 +1,8 @@ name: OIDC e2e tests -on: push +on: + push: + pull_request: env: DEBUG: pw:api diff --git a/.github/workflows/oidc-integration.yml b/.github/workflows/oidc-integration.yml index c7d77de91..9ec73ff56 100644 --- a/.github/workflows/oidc-integration.yml +++ b/.github/workflows/oidc-integration.yml @@ -1,6 +1,8 @@ name: OIDC integration tests -on: push +on: + push: + pull_request: jobs: oidc-integration-test: diff --git a/.github/workflows/s3-e2e.yml b/.github/workflows/s3-e2e.yml index 87e01960a..49b40256e 100644 --- a/.github/workflows/s3-e2e.yml +++ b/.github/workflows/s3-e2e.yml @@ -1,6 +1,8 @@ name: S3 E2E Tests -on: push +on: + push: + pull_request: jobs: s3-e2e: diff --git a/.github/workflows/standard-e2e.yml b/.github/workflows/standard-e2e.yml index aa7ea06b2..477f0c3ad 100644 --- a/.github/workflows/standard-e2e.yml +++ b/.github/workflows/standard-e2e.yml @@ -1,6 +1,8 @@ name: Standard E2E Tests -on: push +on: + push: + pull_request: env: LOG_LEVEL: DEBUG diff --git a/.github/workflows/standard-suite.yml b/.github/workflows/standard-suite.yml index d820f801b..c9aa05b26 100644 --- a/.github/workflows/standard-suite.yml +++ b/.github/workflows/standard-suite.yml @@ -1,6 +1,8 @@ name: Full Standard Test Suite -on: push +on: + push: + pull_request: jobs: standard-tests: