バックエンドのworkflowファイル作成 #42 #11
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: Ready For Review Notification | |
| on: | |
| pull_request: | |
| types: [opened,ready_for_review] | |
| jobs: | |
| notify: | |
| if: github.event.pull_request.draft == false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Discord Notification | |
| uses: appleboy/discord-action@master | |
| with: | |
| webhook_url: ${{secrets.DISCORD_WEBHOOK}} | |
| username: "Github Actions Bot" | |
| color: "#48f542" | |
| message: | | |
| Pull Request #${{ github.event.pull_request.number }} is ready for review! | |
| **タイトル**: ${{ github.event.pull_request.title }} | |
| ** 作成者**: ${{ github.event.pull_request.user.login }} | |
| ** PR番号 **: ${{ github.event.pull_request.number }} | |
| ** リンク**: ${{ github.event.pull_request.html_url }} |