Skip to content

Update pr-post.yml

Update pr-post.yml #2

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

Check failure on line 29 in .github/workflows/pr-post.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-post.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
env:
PR_NUMBER: ${{ github.event.number }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISCORD_WEBHHOK: ${{ secrets.DISCORD_WEBHOOK_SUBMISSIONS }}