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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-geometry.git


The following commit(s) were added to refs/heads/master by this push:
     new aac643c4 Run builds only on push to master and pull requests
aac643c4 is described below

commit aac643c47de105e3480679b72f83564790175afb
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Apr 3 06:53:06 2026 -0400

    Run builds only on push to master and pull requests
---
 .github/workflows/coverage.yml | 6 +++++-
 .github/workflows/maven.yml    | 6 +++++-
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index fd9d5091..110ed659 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -15,7 +15,11 @@
 
 name: Coverage
 
-on: [push, pull_request]
+on:
+  push:
+    branches:
+      - 'master'
+  pull_request: {}
 
 permissions:
   contents: read
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index a8274793..e87927ce 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -15,7 +15,11 @@
 
 name: Java CI
 
-on: [push, pull_request]
+on:
+  push:
+    branches:
+      - 'master'
+  pull_request: {}
 
 permissions:
   contents: read

Reply via email to