駒落ち用スクロールバーの修正 #29
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: 'GitHub Notification' | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send Discord notification | |
uses: stegzilla/discord-notify@v2 | |
with: | |
webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
title: GitHub Notification | |
message: "**${{ github.event.pull_request.title }}**\n**Creator:** ${{ github.event.pull_request.user.login }}\n${{ github.event.pull_request.html_url }}" | |
avatar_url: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png | |
username: GitHub Notifier |