Add files via upload #26
Workflow file for this run
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: Song Submission Discord Webhook | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- opened | |
jobs: | |
send-webhook: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: | | |
npm init -y | |
npm install | |
npm install axios | |
npm install midi-file | |
npm install @tonejs/midi | |
- name: Post Discord Message | |
run: node .github/scripts/pr-poster.js | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DISCORD_WEBHOOK_SUBMISSIONS: ${{ secrets.DISCORD_WEBHOOK_SUBMISSIONS }} |