Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/security-slack-notify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Notify #tech_all on Slack when a security PR is opened.
# Mentions @first_level_support so the team can prioritize review.
#
# Thin caller workflow — all logic lives in forestadmin/.github

name: Notify Slack on security PR

on:
pull_request:
types: [labeled]

permissions:
contents: read

jobs:
notify:
if: "github.event.label.name == ':lock: security'"
uses: forestadmin/.github/.github/workflows/notify-slack-security-pr.yml@main
with:
slack_channel_id: GAZF5Q5RV
slack_usergroup_id: S09SUAY74TD
pr_title: ${{ github.event.pull_request.title }}
pr_url: ${{ github.event.pull_request.html_url }}
pr_author: ${{ github.event.pull_request.user.login }}
repo: ${{ github.repository }}
secrets:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
13 changes: 0 additions & 13 deletions .github/workflows/vulnerability-scan.yml

This file was deleted.

Loading