Skip to content

Discord announcement: push only when label "Needs review" is set #30

Discord announcement: push only when label "Needs review" is set

Discord announcement: push only when label "Needs review" is set #30

Workflow file for this run

on:
pull_request:
types: [ opened, labeled, review_requested ]
branches: [ main ]
jobs:
build:
name: "Announce PR on Discord"
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'Armbian' && contains(github.event.pull_request.labels.*.name, 'Needs review')

Check failure on line 10 in .github/workflows/pr-announce.yml

View workflow run for this annotation

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

Invalid workflow file

The workflow is not valid. .github/workflows/pr-announce.yml (Line: 10, Col: 9): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
steps:
- name: Get repo
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Discord webhook
run: |
curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X POST --data \
"{\"username\": \"Github\", \"avatar_url\": \"${{ secrets.AVATARURL }}\", \"content\": \"\
:arrow_heading_up: **Pull request** to [$GITHUB_REPOSITORY](<$GITHUB_SERVER_URL/$GITHUB_REPOSITORY>) by [$GITHUB_ACTOR](<$GITHUB_SERVER_URL/$GITHUB_ACTOR>) - **Please review!** \
:point_right: [Link](<$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/pull/${{github.event.pull_request.number}}>): *$(git show -s --format=%s)*\"}" ${{ secrets.WEBHOOKURL }}