Octokit Release Notifier
GitHub App
Octokit Release Notifier
GitHub App
Emits a repository_dispatch
event with { "event_type": "[repository's full_name]-release", "client_payload": <release webhook event payload> }
for every release event in the following octokit repositories
- https://github.com/octokit/openapi (event_type:
octokit/openapi-release
) - https://github.com/octokit/openapi-types.ts (event_type:
octokit/openapi-types.ts-release
) - https://github.com/octokit/types.ts (event_type:
octokit/types.ts-release
) - https://github.com/octokit/webhooks (event_type:
webhooks/openapi-release
)
Example workflow to act on a new release
name: Update OpenAPI
on:
repository_dispatch:
types: [octokit/openapi-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
Octokit Release Notifier is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.
Report abuse