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 }}"