include qb images for qbox #34
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 Commit Notifier | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send commit payload to Discord Bot | |
| env: | |
| URL: http://${{ secrets.DISCORDBOT }}:3000/github-commits | |
| run: | | |
| curl -sS -X POST "$URL" \ | |
| -H 'Content-Type: application/json' \ | |
| --data-binary "@$GITHUB_EVENT_PATH" |