From 791ead6a05b4f6ea0dec8698fa1d2ae475fa1f6a Mon Sep 17 00:00:00 2001 From: Ahmed Abualsaud <65791736+ahmedabu98@users.noreply.github.com> Date: Tue, 28 May 2024 17:33:20 -0400 Subject: [PATCH] add pull_request_target event (#31426) --- .github/workflows/IO_Iceberg_Integration_Tests.yml | 1 + .github/workflows/IO_Iceberg_Performance_Tests.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/IO_Iceberg_Integration_Tests.yml b/.github/workflows/IO_Iceberg_Integration_Tests.yml index 006cd9d13bee..8b2ddfae72ec 100644 --- a/.github/workflows/IO_Iceberg_Integration_Tests.yml +++ b/.github/workflows/IO_Iceberg_Integration_Tests.yml @@ -51,6 +51,7 @@ env: jobs: IO_Iceberg_Integration_Tests: if: | + github.event_name == 'pull_request_target' || github.event_name == 'workflow_dispatch' || (github.event_name == 'schedule' && github.repository == 'apache/beam') || github.event.comment.body == 'Run IcebergIO Integration Test' diff --git a/.github/workflows/IO_Iceberg_Performance_Tests.yml b/.github/workflows/IO_Iceberg_Performance_Tests.yml index e9920a5a1386..20b2f3d40e31 100644 --- a/.github/workflows/IO_Iceberg_Performance_Tests.yml +++ b/.github/workflows/IO_Iceberg_Performance_Tests.yml @@ -51,6 +51,7 @@ env: jobs: IO_Iceberg_Performance_Tests: if: | + github.event_name == 'pull_request_target' || github.event_name == 'workflow_dispatch' || (github.event_name == 'schedule' && github.repository == 'apache/beam') || github.event.comment.body == 'Run IcebergIO Performance Test'