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-rng.git


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

commit d952d8b2949b40d7f71048faccadbcd1378bfd01
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Apr 3 06:53:19 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 5fe78c91..5400b23a 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 ca2644ba..a317b677 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