Application: Show uploaded custom scores on the application details page
#431
Workflow file for this run
This file contains hidden or 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: Discord PR Notification | |
| on: | |
| pull_request: | |
| types: [labeled] | |
| permissions: | |
| contents: read | |
| jobs: | |
| notify: | |
| if: github.event.label.name == 'schau mi o' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send Discord Notification | |
| uses: appleboy/discord-action@v1.2.0 | |
| with: | |
| webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }} | |
| webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }} | |
| username: "PROMPT Review Bot" | |
| avatar_url: "https://prompt.aet.cit.tum.de/img/prompt_logo.svg" | |
| message: | | |
| 🚀 **New Review Request!** | |
| **PR:** [${{ github.event.pull_request.title }}](${{ github.event.pull_request.html_url }}) | |
| **Author:** ${{ github.event.pull_request.user.login }} | |
| @Maintainers, please have a look! (schau mi o! 😉) |