Skip to content

Commit f0ea9a5

Browse files
feat: add global config update instruction and CI workflow
- Add GitHub Actions workflow for radar - Implement update_global_config instruction - Update global_config state structure - Add project README - Update gitignore rules
1 parent 6d3275d commit f0ea9a5

7 files changed

Lines changed: 815 additions & 7 deletions

File tree

.github/workflows/radar.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Radar Static Analysis
2+
on: [push]
3+
jobs:
4+
analyze:
5+
runs-on: ubuntu-latest
6+
permissions:
7+
security-events: write
8+
actions: read
9+
contents: read
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
with:
15+
submodules: "recursive"
16+
17+
- name: Run radar
18+
id: radar
19+
uses: auditware/radar-action@main
20+
with:
21+
path: "."
22+
ignore: "low"
23+
24+
- name: Upload SARIF file
25+
uses: github/codeql-action/upload-sarif@v3
26+
with:
27+
sarif_file: output.sarif

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ node_modules
66
test-ledger
77
.yarn
88

9-
*.todo
9+
*.todo
10+
output.json

0 commit comments

Comments
 (0)