Slack alerts for Sigrid findings #88
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: "Slack alerts for Sigrid findings" | ||
on: | ||
schedule: | ||
- cron: "0 6 * * 1-5" | ||
jobs: | ||
slackalerts: | ||
name: "Send Slack alerts" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Check out repository" | ||
uses: actions/checkout@v4 | ||
repository: "Software-Improvement-Group/sigrid-integrations" | ||
- run: "./slack-security-findings/daily_findings.py --customer sig --system sigridci-client" | ||
env: | ||
SIGRID_CI_TOKEN: "${{ secrets.SIGRID_CI_TOKEN }}" | ||
SECURITY_FINDINGS_WEBHOOK: "${{ secrets.SECURITY_FINDINGS_WEBHOOK }}" |