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

vy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


The following commit(s) were added to refs/heads/main by this push:
     new b2ce273  Limit `on.push` in CI to `main` and `release/*` branches to 
avoid duplicate runs
b2ce273 is described below

commit b2ce273ae8cd65b8fbc3b7c3462cc148fdd8a143
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Thu Sep 28 10:38:21 2023 +0200

    Limit `on.push` in CI to `main` and `release/*` branches to avoid duplicate 
runs
---
 .github/workflows/build.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 3615b17..8c882e3 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -19,6 +19,9 @@ name: build
 
 on:
   push:
+    branches:
+      - "main"
+      - "release/*"
     paths-ignore:
       - "**.adoc"
       - "**.md"

Reply via email to