From 4e267fe8895b764363995495b352045599b6ee7e Mon Sep 17 00:00:00 2001 From: swyrwiak-cu <122489837+swyrwiak-cu@users.noreply.github.com> Date: Mon, 22 Dec 2025 19:41:46 +0100 Subject: [PATCH] Add Slack notification workflow for SOC2 audit --- .github/workflows/soc2-slack-notify.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/soc2-slack-notify.yml diff --git a/.github/workflows/soc2-slack-notify.yml b/.github/workflows/soc2-slack-notify.yml new file mode 100644 index 0000000..60e5c28 --- /dev/null +++ b/.github/workflows/soc2-slack-notify.yml @@ -0,0 +1,22 @@ +name: SOC2 Slack Notification + +on: + pull_request: + branches: ["main"] + push: + branches: ["main"] + +jobs: + slack-notify: + name: Send Slack message for SOC2 audit + runs-on: ubuntu-latest + permissions: {} + if: github.event_name == 'push' + steps: + - name: Send Slack webhook event + uses: rtCamp/action-slack-notify@12e36fc18b0689399306c2e0b3e0f2978b7f1ee7 + env: + MSG_MINIMAL: commit + SLACK_FOOTER: "" + SLACK_TITLE: "${{ github.repository }} released!" + SLACK_WEBHOOK: "${{ secrets.PROJEN_RELEASE_SLACK_WEBHOOK }}"