Skip to content

Release Notifier Release Notifier

GitHub App

Release Notifier Release Notifier

GitHub App

Meta, I know 🤷‍♂️ This is the GitHub App to notify you about releases of the Release Notifier Action.

Emits a repository_dispatch event with { "event_type": "release-notifier-release", "client_payload": <release webhook event payload> } for every release event in https://github.com/gr2m/release-notifier-action/releases

Example workflow to act on a new release

name: Update OpenAPI
on:
  repository_dispatch:
    types: [release-notifier-release]

jobs:
  published:
    runs-on: ubuntu-latest
    if: github.event.client_payload.action == 'published'
    steps:
      - run: "echo: 'new release: ${{ github.event.release.tag_name }}'"

Developer

Release Notifier Release Notifier is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

Report abuse