-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (33 loc) · 1.17 KB
/
slither.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Slither Static Analysis
# Runs only on PR merging to main
on:
pull_request:
branches: [ main ]
types: [ opened, reopened, synchronize, ready_for_review ]
workflow_dispatch:
jobs:
analyze:
runs-on: ubuntu-latest
# Do not run when PR is still a draft
if: ${{ !github.event.pull_request.draft }}
env:
commit_url: ${{ github.server_url }}/${{ github.repository }}/blob/${{ github.event.pull_request.head.sha }}/
steps:
- uses: actions/checkout@v3
- name: Run Slither
uses: crytic/[email protected]
id: slither
with:
fail-on: none
slither-args: --checklist --show-ignored-findings --markdown-root ${{ env.commit_url }}
- name: Create/update checklist as PR comment
uses: actions/github-script@v7
if: github.event_name == 'pull_request'
env:
REPORT: ${{ steps.slither.outputs.stdout }}
with:
script: |
const script = require('.github/scripts/slither-comment')
const header = '# Slither report'
const body = process.env.REPORT
await script({ github, context, header, body })