Skip to content

Commit

Permalink
[dependabot] add slack alerts (#280)
Browse files Browse the repository at this point in the history
Enables dependabot slack alerts for `0x-settler`

@0xProject/platform-engineering
  • Loading branch information
davidk-zx authored Jan 10, 2025
2 parents 65c9e4d + 8e570f8 commit 46a4360
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dependabot-slack-alerts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Dependabot Slack alerts

permissions:
contents: read
security-events: read

on:
# TODO: enable hourly run once tested
#schedule:
# - cron: '0 * * * *'
workflow_dispatch:
jobs:
notify-vulnerabilites:
runs-on: ubuntu-latest
steps:
# Latest version available at: https://github.com/kunalnagarco/action-cve/releases
- name: Notify Vulnerabilities
uses: kunalnagarco/[email protected]
with:
severity: high,critical
token: "${{ secrets.DEPENDABOT_GITHUB_TOKEN }}"
slack_webhook: "${{ secrets.DEPENDABOT_SLACK_WEBHOOK }}"

0 comments on commit 46a4360

Please sign in to comment.