Skip to content

RFC: Moving to UXL foundation org #6

RFC: Moving to UXL foundation org

RFC: Moving to UXL foundation org #6

Workflow file for this run

name: Slack PR Notification
on:
pull_request:
types: [opened, reopened]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Check PR title
id: check
run: |
if [[ "${{ github.event.pull_request.title }}" == *"RFC"* ]]; then
echo "NOTIFY_SLACK=true" >> $GITHUB_ENV
fi
- name: Notify Slack
if: env.NOTIFY_SLACK == 'true'
uses: slackapi/[email protected]
with:
channel-id: "rc-test"
slack-message: "${{ github.actor }} opened a new RFC: ${{ github.event.pull_request.title }}"
env:
SLACK_BOT_TOKEN: ${{ secrets.XXX }}
#SLACK_BOT_TOKEN: foobar