Skip to content

on develop

on develop #1

Workflow file for this run

on:
push:
branches: [develop]
workflow_dispatch:
name: pkgdown.yaml
permissions: read-all
jobs:
release-bot:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Post a message in a channel
uses: slackapi/[email protected]
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
payload: |
text: "*GitHub Action build result*: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}"
blocks:
- type: "section"

Check failure on line 24 in .github/workflows/release-bot.yaml

View workflow run for this annotation

GitHub Actions / pkgdown.yaml

Invalid workflow file

The workflow is not valid. .github/workflows/release-bot.yaml (Line: 24, Col: 14): A sequence was not expected
text:
type: "mrkdwn"
text: "GitHub Action build result: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}"