This GtiHub Action allows you to broadcast a message through issue comments. It's helpful when you need to comment on many different issues.
The action is intended to work with the workflow_dispatch
event.
An optional 'labels' input lets you target a subset of issues.
Create a workflow .yml
file in your repositories .github/workflows
directory. An example workflow is available below. For more information, reference the GitHub Help Documentation for Creating a workflow file.
name: Broadcast a message across multiple issues
on:
workflow_dispatch:
inputs:
message:
required: false
labels:
required: false
jobs:
broadcast:
runs-on: ubuntu-latest
steps:
- uses: jenschelkopf/broadcast-action@master