Files
Sunshine/.github/workflows/_release-notifier.yml
T
2026-02-14 17:43:01 -05:00

28 lines
836 B
YAML

---
# This workflow is centrally managed in https://github.com/LizardByte/.github/
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
# the above-mentioned repo.
# Create a blog post for a new release and open a PR to the blog repo
name: Release Notifications
permissions: {}
on:
release:
types:
- released # this triggers when a release is published, but does not include pre-releases or drafts
jobs:
update-blog:
name: Update blog
uses: LizardByte/.github/.github/workflows/__call-release-notifier.yml@master
if: github.repository_owner == 'LizardByte'
permissions:
contents: read
with:
gh_name: ${{ vars.GH_BOT_NAME }}
secrets:
GH_EMAIL: ${{ secrets.GH_BOT_EMAIL }}
GH_TOKEN: ${{ secrets.GH_BOT_TOKEN }}