mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-14 06:12:27 +00:00
23 lines
772 B
YAML
23 lines
772 B
YAML
on:
|
|
issues:
|
|
types: [labeled]
|
|
|
|
env:
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_ISSUES_WEBHOOK }}
|
|
|
|
jobs:
|
|
labelNotify:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- name: notify
|
|
if: >
|
|
github.event.label.name == 'enhancement'
|
|
|| github.event.label.name == 'bug'
|
|
|| github.event.label.name == 'help wanted'
|
|
|| github.event.label.name == 'priority/high'
|
|
|| github.event.label.name == 'question'
|
|
|| github.event.label.name == 'status/waiting on upstream'
|
|
uses: Ilshidur/action-discord@master
|
|
with:
|
|
args: "[${{ github.event.issue.title }} (#${{ github.event.issue.id }})](<${{ github.event.issue.html_url }}>) added `${{ github.event.label.name }}` label"
|