-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathaction.yml
More file actions
53 lines (41 loc) · 1.33 KB
/
action.yml
File metadata and controls
53 lines (41 loc) · 1.33 KB
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
43
44
45
46
47
48
49
50
51
52
53
name: Lightning Flow Scan
description: Scan Salesforce Flows for best practices, security, and performance issues.
branding:
icon: zap
color: purple
inputs:
GITHUB_TOKEN:
description: 'GitHub token for API access'
required: false
default: ${{ github.token }}
config:
description: 'Path to configuration file (e.g., .flow-scanner.yaml)'
required: false
threshold:
description: 'Filter results by minimum severity (error, warning, note, never). Config file takes precedence if not set.'
required: false
categories:
description: 'Filter rules by category (problem, suggestion, layout). Comma or space-separated.'
required: false
sarif-only:
description: 'Only generate SARIF (no structured output). Fails on any violation.'
required: false
default: 'false'
betaMode:
description: 'Enable beta rules at run-time (experimental)'
required: false
default: 'false'
branch:
description: 'Branch to scan (defaults to event branch or repository default)'
required: false
outputs:
sarifPath:
description: 'Path to generated SARIF file'
results:
description: 'JSON array of violations with all details'
summary:
description: 'Summary object with counts and status'
runs:
using: node20
main: packages/action/dist/index.js
author: Ruben Halman