Set Notifications Frequency for GitHub Advanced Security #61778
-
Select Topic AreaQuestion BodyIs there a way in GitHub Advanced Security to create a frequency of notifications for critical/high findings, which includes Dependabot, Code scanning, and Secret scanning, for repository owners? I am getting feedback that repo owners are not getting notifications based on findings. Use case: As an engineer, I want to be kept up to date on new findings of critical/high GitHub Advanced Security findings in my owned repositories such as a weekly basis on every Monday morning. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
You can use cron jobs (see https://cronexpressiontogo.com/, https://medium.com/nerd-for-tech/lets-run-cron-jobs-using-github-actions-df64496ffc4a, and https://www.hostinger.com/tutorials/cron-job) in a Github workflow or create 'dependabot.yml' (also set up 'codeql.yml' if you want') in a folder called '.github', such as the following: |
Beta Was this translation helpful? Give feedback.
Unfortunately, no to scheduling, but you can do notifications. You could set up the dependency graph (see https://github.blog/2017-11-16-introducing-security-alerts-on-github/, https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph, and https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph). However, there is no current method to set up the frequency of notifications. I would try to see if there's an external tool to set up cron jobs for dependency and CVE alerts. Otherwise, your best bet is to build an in-house solution (which woul…