Deploy minio #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Notify on new issue" | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Notify on Discord | |
uses: tsickert/[email protected] | |
with: | |
webhook-url: ${{ secrets.DISCORD_ISSUE_WEBHOOK }} | |
content: | | |
Es wurde ein neues Issue #${{ github.event.issue.number }} erstellt. | |
**${{ github.event.issue.title }}** | |
${{ github.event.issue.html_url }} | |
username: "GitHub Actions" | |
avatar-url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" |