Skip to content

ankur-lt/send-releases-to-slack

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Send Release Changelog to Slack

The Github action supports sending the release changelog to slack. The data supported by the body parameter is the JSON changelog output supported by https://www.npmjs.com/package/auto-changelog.

name: Changelog

on:
  release:
    types:
      - created
jobs:
  # sample comment
  generate-changelog:
    runs-on: ubuntu-latest
    steps:
        # Send JSON changelog to the slack app
      - name: Send release notes to sack
        uses: ankur-lt/send-releases-to-slack@v1.1.0
        with:
          repo_display_name: 'Service Name'
          webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
          body: ${{ steps.jsonChangelog.outputs.content }}
          reverted_release: false

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published