From 95ab71fc3ac0683ca4e7994dc145ed110c22714e Mon Sep 17 00:00:00 2001 From: omo50 <144749186+omo50@users.noreply.github.com> Date: Sat, 14 Mar 2026 13:59:11 -0600 Subject: [PATCH] chore(actions): try to make it not spam --- .forgejo/workflows/dp-legacy-nether-extended-publish.yml | 1 + .forgejo/workflows/mp-re-console-plus-publish.yml | 1 + .forgejo/workflows/mp-simply-legacy-publish.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.forgejo/workflows/dp-legacy-nether-extended-publish.yml b/.forgejo/workflows/dp-legacy-nether-extended-publish.yml index bb74ad99b..cc939d7ea 100644 --- a/.forgejo/workflows/dp-legacy-nether-extended-publish.yml +++ b/.forgejo/workflows/dp-legacy-nether-extended-publish.yml @@ -12,6 +12,7 @@ on: jobs: check-tag: + if: (github.event_name == 'release' && startsWith(github.event.release.tag_name, 'LNE')) || (github.event_name == 'workflow_dispatch') runs-on: technocality outputs: should_run: ${{ steps.check.outputs.should_run }} diff --git a/.forgejo/workflows/mp-re-console-plus-publish.yml b/.forgejo/workflows/mp-re-console-plus-publish.yml index 0a3eb96a3..2a72717c6 100644 --- a/.forgejo/workflows/mp-re-console-plus-publish.yml +++ b/.forgejo/workflows/mp-re-console-plus-publish.yml @@ -12,6 +12,7 @@ on: jobs: check-tag: + if: (github.event_name == 'release' && startsWith(github.event.release.tag_name, 'RC')) || (github.event_name == 'workflow_dispatch') runs-on: technocality outputs: should_run: ${{ steps.check.outputs.should_run }} diff --git a/.forgejo/workflows/mp-simply-legacy-publish.yml b/.forgejo/workflows/mp-simply-legacy-publish.yml index 3936deb15..1a679d31d 100644 --- a/.forgejo/workflows/mp-simply-legacy-publish.yml +++ b/.forgejo/workflows/mp-simply-legacy-publish.yml @@ -12,6 +12,7 @@ on: jobs: check-tag: + if: (github.event_name == 'release' && startsWith(github.event.release.tag_name, 'SL')) || (github.event_name == 'workflow_dispatch') runs-on: technocality outputs: should_run: ${{ steps.check.outputs.should_run }}