Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Add listen.dev to Github Actions #3059

Closed
wants to merge 10 commits into from
24 changes: 24 additions & 0 deletions .github/workflows/lstn.yml
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not clear what purpose this tool actually serves? From their website:

See and control every external connection your builds make to catch malicious behavior before it reaches production.

But this isn't integrated into any of the build/test workflows so you won't really see anything?

Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: listen.dev Vulnerability Check
on:
workflow_dispatch: {}
pull_request: {}
push:
branches:
- develop

jobs:
listen_dev:
runs-on: ubuntu-latest

if: |
github.actor != 'dependabot[bot]' &&
(github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'zeta-chain/node')
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Run listen.dev Scan
uses: listendev/[email protected]
with:
jwt: ${{ secrets.LSTN_API_KEY }}
ci: only