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 }}