UnityとゲームAIと将棋

Unity、Pythonを中心にゲーム開発やゲームAI開発の技術メモ等、たまに将棋も

2023-11-01から1日間の記事一覧

【GitHub】GitHub Actions でDiscordにWebHookで通知を送りたい時のサンプルコード

結論 name: 'GitHub Notification' on: workflow_dispatch: 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 Not…