Skip to content

v0.53.0 - AI assist in rule creation, case manager batch actions #10

v0.53.0 - AI assist in rule creation, case manager batch actions

v0.53.0 - AI assist in rule creation, case manager batch actions #10

name: Post Release Notes to Slack
on:
release:
types: [published]
permissions:
contents: read
jobs:
slackNotify:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm install node-fetch@2
- name: Run Slack release script
run: node .github/workflows/scripts/slack_release.js
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
GITHUB_REPOSITORY: ${{ github.repository }}
RELEASE_TAG: ${{ github.event.release.tag_name }}
RELEASE_URL: ${{ github.event.release.html_url }}
RELEASE_BODY: ${{ github.event.release.body }}
RELEASE_NAME: ${{ github.event.release.name }}
RELEASE_TITLE: ${{ github.event.release.name || github.event.release.tag_name }}