2022-01-20 23:09:34 +00:00
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [labeled]
|
|
|
|
|
|
|
|
env:
|
2022-01-27 20:44:44 +00:00
|
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_ISSUES_WEBHOOK }}
|
2022-01-20 23:09:34 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
labelNotify:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 5
|
|
|
|
steps:
|
|
|
|
- name: notify
|
2022-01-27 20:44:44 +00:00
|
|
|
if: >
|
|
|
|
github.event.label.name == 'enhancement'
|
|
|
|
|| github.event.label.name == 'bug'
|
|
|
|
|| github.event.label.name == 'help wanted'
|
2022-01-20 23:09:34 +00:00
|
|
|
uses: Ilshidur/action-discord@master
|
|
|
|
with:
|
|
|
|
args: "[${{ github.event.issue.title }}](<${{ github.event.issue.html_url }}>) added `${{ github.event.label.name }}` label"
|