blob: c5869c7c366b3bfc569e415d094c6745d8bf4602 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name: Release Notifier
on:
release:
types:
- published
jobs:
notify:
runs-on: ubuntu-latest
steps:
- uses: gr2m/release-notifier-action@v1
with:
# https://github.com/apps/openapi-release-notifier
app_id: ${{ secrets.OPENAPI_RELEASE_NOTIFIER_APP_ID }}
private_key: ${{ secrets.OPENAPI_RELEASE_NOTIFIER_PRIVATE_KEY }}
dispatch_event_type: github-openapi-release
|