Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

ci: update release notifier #122

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/release-notifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
discord:
if: >-
(github.repository, 'LizardByte/') and
startsWith(github.repository, 'LizardByte/') and
not(github.event.release.prerelease) and
not(github.event.release.draft)
runs-on: ubuntu-latest
Expand All @@ -34,7 +34,7 @@ jobs:

facebook_group:
if: >-
(github.repository, 'LizardByte/') and
startsWith(github.repository, 'LizardByte/') and
not(github.event.release.prerelease) and
not(github.event.release.draft)
runs-on: ubuntu-latest
Expand All @@ -51,7 +51,7 @@ jobs:

facebook_page:
if: >-
(github.repository, 'LizardByte/') and
startsWith(github.repository, 'LizardByte/') and
not(github.event.release.prerelease) and
not(github.event.release.draft)
runs-on: ubuntu-latest
Expand All @@ -68,7 +68,7 @@ jobs:

reddit:
if: >-
(github.repository, 'LizardByte/') and
startsWith(github.repository, 'LizardByte/') and
not(github.event.release.prerelease) and
not(github.event.release.draft)
runs-on: ubuntu-latest
Expand All @@ -88,7 +88,7 @@ jobs:

twitter:
if: >-
(github.repository, 'LizardByte/') and
startsWith(github.repository, 'LizardByte/') and
not(github.event.release.prerelease) and
not(github.event.release.draft)
runs-on: ubuntu-latest
Expand Down
Loading