This is an automated email from the ASF dual-hosted git repository.
jdaugherty pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/grails-gradle-publish.git
The following commit(s) were added to refs/heads/main by this push:
new 198069d [skip ci] fix: do not run ci workflows against tags
198069d is described below
commit 198069d3f8679d6de4f42089623f88b6b1a062fc
Author: James Daugherty <[email protected]>
AuthorDate: Wed Nov 26 07:56:51 2025 -0500
[skip ci] fix: do not run ci workflows against tags
---
.github/workflows/ci.yaml | 2 ++
.github/workflows/rat.yaml | 2 ++
.github/workflows/release-notes.yml | 2 ++
3 files changed, 6 insertions(+)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 9800781..f5dd9c8 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -16,6 +16,8 @@
name: "CI"
on:
push:
+ tags-ignore:
+ - '**' # ignore any tag ref
pull_request:
workflow_dispatch:
# queue jobs and only allow 1 run per branch due to the likelihood of hitting
GitHub resource limits
diff --git a/.github/workflows/rat.yaml b/.github/workflows/rat.yaml
index 66b3474..955cb82 100644
--- a/.github/workflows/rat.yaml
+++ b/.github/workflows/rat.yaml
@@ -16,6 +16,8 @@
name: "Licensing - RAT Report"
on:
push:
+ tags-ignore:
+ - '**' # ignore any tag ref
pull_request:
workflow_dispatch:
# Queue jobs and only allow 1 run per branch due to the likelihood of hitting
GitHub resource limits
diff --git a/.github/workflows/release-notes.yml
b/.github/workflows/release-notes.yml
index ea25573..770763f 100644
--- a/.github/workflows/release-notes.yml
+++ b/.github/workflows/release-notes.yml
@@ -18,6 +18,8 @@ on:
issues:
types: [ closed,reopened ]
push:
+ tags-ignore:
+ - '**' # ignore any tag ref
pull_request:
types: [ opened, reopened, synchronize ]
pull_request_target: