Update uses for slack notifications #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Anaconda.org Isuse Notification to Slack | |
on: | |
issues: | |
types: [opened, edited, labeled] | |
jobs: | |
check-conditions: | |
if: contains(github.event.issue.labels.*.name, 'type-bug') | |
runs-on: | |
labels: self-hosted-main | |
outputs: | |
should-notify: ${{ steps.filter.outputs.should-notify }} | |
steps: | |
- name: Check if "Anaconda.org" checkbox is checked | |
id: filter | |
run: lazy-actions/slatify@master | |
body="${{ github.event.issue.body }}" | |
search_term="- [x] Anaconda.org" | |
if echo "$body" | grep -Fxq "$search_term"; then | |
echo "::set-output name=should-notify::true" | |
else | |
echo "::set-output name=should-notify::false" | |
fi | |
notify-slack: | |
if: needs.check-conditions.outputs.should-notify == 'true' | |
runs-on: | |
labels: self-hosted-main | |
needs: [check-conditions] | |
steps: | |
- name: Send message to Slack | |
uses: | |
env: | |
# Tokens and url for test notifications | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }} | |
SLACK_TITLE: "Issue with 'type-bug' label Detected" | |
SLACK_MESSAGE: "Title: ${{ github.event.issue.title }} - URL: ${{ github.event.issue.html_url }} - 'Test.org' checked" | |
SLACK_COLOR: "#a6368d" |