This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch release/10.1.0 in repository https://gitbox.apache.org/repos/asf/logging-parent.git
commit ae44882df7b8854f90561fd69ac5518e03f06a58 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"
