{"id":16771997,"url":"https://github.com/eddmann/slack-release-notifier","last_synced_at":"2025-07-07T21:44:53.025Z","repository":{"id":141665458,"uuid":"360515273","full_name":"eddmann/slack-release-notifier","owner":"eddmann","description":"Used at MyBuilder to notify the team upon successful deployment of a GitHub release.","archived":false,"fork":false,"pushed_at":"2023-03-24T10:54:40.000Z","size":592,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-23T03:26:42.993Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://tech.mybuilder.com/using-github-actions-to-send-gone-live-release-notes-via-email-and-slack/","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eddmann.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-22T12:42:32.000Z","updated_at":"2022-02-03T16:36:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"43c775e2-c9de-4704-9ddc-803953ffd126","html_url":"https://github.com/eddmann/slack-release-notifier","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddmann%2Fslack-release-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddmann%2Fslack-release-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddmann%2Fslack-release-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddmann%2Fslack-release-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eddmann","download_url":"https://codeload.github.com/eddmann/slack-release-notifier/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243895832,"owners_count":20365281,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T06:29:37.982Z","updated_at":"2025-03-16T16:27:45.347Z","avatar_url":"https://github.com/eddmann.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Slack Release Notifier\n\nUsed at [MyBuilder](https://www.mybuilder.com/) to notify the team upon successful deployment of a GitHub release.\n\n## Usage\n\nWe use [Release Drafter](https://github.com/release-drafter/release-drafter) to compile the release notes based on merged pull requests.\nOnce this draft release has been published and a successful deployment has occurred, this GitHub Action is invoked which notifies the team via a dedicated Slack channel.\nAs the release notes include the contributing GitHub usernames, we are able to lookup the associated Slack member identities and _mention_ them directly within the release notification.\nThis provides a trivial means of making interested parities aware of the changes that have just gone live.\n\n```yaml\nname: Notify Team via Slack about Release\non: deployment_status\njobs:\n  notify:\n    if: ${{ github.event.deployment_status.state == 'success' }}\n    runs-on: ubuntu-20.04\n    steps:\n      - name: Notify Team\n        uses: eddmann/slack-release-notifier@v1\n        with:\n          slackTitle: 'Your changes are live!'\n          slackHeading: 'Gone Live - {tag_name}'\n          gitHubSlackUserLookup: '{\"@GitHubUsername\":\"SlackMemberId\"}'\n          slackWebhookEndpointUrl: ${{ secrets.RELEASE_SLACK_WEBHOOK_URL }}\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n```\n\nAlternatively, you can emit the notification upon the release being published.\n\n```yaml\nname: Notify Team via Slack about Release\non:\n  release:\n    types: [published]\njobs:\n  notify:\n    runs-on: ubuntu-20.04\n    steps:\n      - name: Notify Team\n        uses: eddmann/slack-release-notifier@v1\n        with:\n          slackTitle: 'Your changes are live!'\n          slackHeading: 'Gone Live - {tag_name}'\n          gitHubSlackUserLookup: '{\"@GitHubUsername\":\"SlackMemberId\"}'\n          slackWebhookEndpointUrl: ${{ secrets.RELEASE_SLACK_WEBHOOK_URL }}\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feddmann%2Fslack-release-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feddmann%2Fslack-release-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feddmann%2Fslack-release-notifier/lists"}