You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by he...@apache.org on 2023/05/26 00:21:13 UTC

[incubator-devlake] branch main updated: ci: Enforce CI test execution for cherrypicked PRs (#5288)

This is an automated email from the ASF dual-hosted git repository.

hez pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/main by this push:
     new 378616176 ci: Enforce CI test execution for cherrypicked PRs (#5288)
378616176 is described below

commit 3786161767477439cc8c8422a2f39129c87445da
Author: Keon Amini <ke...@merico.dev>
AuthorDate: Thu May 25 19:21:09 2023 -0500

    ci: Enforce CI test execution for cherrypicked PRs (#5288)
---
 .github/workflows/test-e2e.yml | 2 +-
 .github/workflows/test.yml     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml
index 93bf1f024..8d8f6a1f2 100644
--- a/.github/workflows/test-e2e.yml
+++ b/.github/workflows/test-e2e.yml
@@ -21,7 +21,7 @@ on:
   push:
     branches: [main]
   pull_request:
-    branches: [main]
+    branches: [main, release-*]
     paths:
       - "**.go"
       - '**.py'
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f5ee83890..858919cf9 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -21,7 +21,7 @@ on:
   push:
     branches: [main]
   pull_request:
-    branches: [ main ]
+    branches: [main, release-*]
     paths:
       - '**.go'
       - '**.py'