-
-
Notifications
You must be signed in to change notification settings - Fork 4
27 lines (23 loc) · 836 Bytes
/
_release-notifier.yml
File metadata and controls
27 lines (23 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
# 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 }}