Skip to content
This repository has been archived by the owner on Apr 2, 2023. It is now read-only.

A GitHub Action to send PR review request message to Slack.

License

Notifications You must be signed in to change notification settings

hirokisakabe/pr-message-to-slack

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

Repository files navigation

deprecated

Use Official GitHub Integration instead.

pr-message-to-slack

A GitHub Action to send PR review request message to Slack.

App

(There are several Actions in the Marketplace that are similar to this Action.)

Usage

1. Create Your Slack App

See https://api.slack.com/apps

After creating, Activate Incoming Webhooks and generate Webhook URL. Then copy it.

2. Set the URL of the generated webhook as PR_MESSAGE_SLACK_WEBHOOK_URL in GitHub Repo Actions Secrets.

3. Commit GitHub Actions YAML and slack-id.json

GitHub Actions YAML (e.g. .github/workflows/slack-message.yml)

on:
  pull_request:
    # 'types' only supports 'review_requested'
    types: [review_requested]

# Prevent sending multiple messages when there are multiple reviewers.
concurrency:
  group: ${{ github.head_ref || github.run_id }}
  cancel-in-progress: true

jobs:
  pr-message-to-slack:
    runs-on: ubuntu-latest
    steps:
      # To use slack-id.json
      - uses: actions/checkout@v2
      - uses: hirokisakabe/pr-message-to-slack@v1.0.0
        env:
          # https://hooks.slack.com/...
          PR_MESSAGE_SLACK_WEBHOOK_URL: ${{ secrets.PR_MESSAGE_SLACK_WEBHOOK_URL }}

.github/slack-id.json

This action use slack-id.json to add a mention in Slack.

{
  "UserA's GitHub username": "UserA's Slack member ID",
  "UserB's GitHub username": "UserB's Slack member ID"
}

You can find your GitHub username here.

GitHub username

You can find your Slack member ID here.

Slack member ID

License

MIT

Author

Hiroki SAKABE