Skip to content

New bin 4

New bin 4 #5

Workflow file for this run

name: Song Submission Discord Webhook
on:
workflow_dispatch:
pull_request:
types:
- opened
jobs:
send-webhook:
runs-on: ubuntu-latest
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
- 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 }}