Skip to content

v4.4.2 release

v4.4.2 release #13

Workflow file for this run

name: Release Action
on:
release:
types:
- published
jobs:
notify-release:
runs-on: ubuntu-latest
name: Notify Release
strategy:
matrix:
url: [SLACK_WEBHOOK_ASK_DEVREL_URL, SLACK_WEBHOOK_DEVREL_TOOLING_URL, SLACK_WEBHOOK_DEVREL_PRIVATE_URL]
steps:
- name: Send to slack channels
uses: slackapi/slack-github-action@v2.0.0
if: always();

Check failure on line 18 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release Action

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 18, Col: 13): Unexpected symbol: ';'. Located at position 9 within expression: always();
continue-on-error: true
with:
webhook: ${{ secrets[matrix.url]}}
webhook-type: incoming-webhook
errors: true
payload: |
blocks:
- type: "header"
text:
type: "plain_text"
text: ":initial_external_notification_sent: :python: Version ${{ github.event.release.name }} of the Python SDK has been released"
- type: "section"
text:
type: "mrkdwn"
text: "${{ github.event.release.body }}"
- type: "divider"
- type: "section"
text:
type: "mrkdwn"
text: "You can view the full change log <${{github.event.release.html_url }}|here>"