diff --git a/.github/workflows/broadcast-message.yml b/.github/workflows/broadcast-message.yml new file mode 100644 index 00000000..46178e59 --- /dev/null +++ b/.github/workflows/broadcast-message.yml @@ -0,0 +1,14 @@ +# Updates multiple issues with a certain tag, with a comment containing a given message +name: 🎯 Broadcast Message across Issues +on: + workflow_dispatch: + inputs: + message: { required: false } + labels: { required: false } +jobs: + broadcast: + runs-on: ubuntu-latest + steps: + - uses: jenschelkopf/broadcast-action@master + with: + token: ${{ secrets.BOT_GITHUB_TOKEN }} \ No newline at end of file