mirror of https://github.com/renovatebot/renovate
24 lines
629 B
YAML
24 lines
629 B
YAML
name: 'Mend Slack Notifier'
|
|
|
|
on:
|
|
discussion:
|
|
types: [labeled]
|
|
|
|
permissions:
|
|
discussions: read
|
|
|
|
jobs:
|
|
slack:
|
|
if: contains(github.event.label.name, 'mend-app')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Post to Slack
|
|
id: slack
|
|
uses: slackapi/slack-github-action@37ebaef184d7626c5f204ab8d3baff4262dd30f0 # v1.27.0
|
|
with:
|
|
channel-id: 'C05NLTMGCJC'
|
|
# For posting a simple plain text message
|
|
slack-message: '<${{ github.event.discussion.html_url }}|${{ github.event.discussion.title }}>'
|
|
env:
|
|
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
|