Skip to content
This repository was archived by the owner on May 31, 2023. It is now read-only.

Commit 8877ef9

Browse files
fix: adding default false-positives (#10)
1 parent 05d6651 commit 8877ef9

File tree

4 files changed

+24
-39
lines changed

4 files changed

+24
-39
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/in
2222
COPY earlybird/binaries/go-earlybird-linux /bin/go-earlybird
2323
COPY earlybird/.ge_ignore /
2424
COPY earlybird/config /.go-earlybird
25-
COPY config /.go-earlybird
25+
COPY config/default-false-positives.yaml /.go-earlybird/falsepositives
2626

2727
COPY entrypoint.sh /entrypoint.sh
2828
COPY annotate.py /
2929

30-
ENTRYPOINT ["/entrypoint.sh"]
30+
ENTRYPOINT ["/entrypoint.sh"]

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
using: "docker"
2121
env:
2222
INPUT_SCANDIR: "${{ inputs.ScanDir }}"
23-
image: "docker://ghcr.io/splunk/addonfactory-sample-scanner:v1.3.1"
23+
image: "docker://ghcr.io/splunk/addonfactory-sample-scanner:1.3.2-develop.2"
2424
inputs:
2525
args:
2626
description: Additional arguments to the scanner
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
rules:
2+
- Codes:
3+
- 3014
4+
Pattern: "splunk.com"
5+
FileExtensions: []
6+
Description: "ignore splunk sales email"
7+
- Codes:
8+
- 3014
9+
Pattern: "github.com"
10+
FileExtensions: []
11+
Description: "ignore splunk sales email"
12+
- Codes:
13+
- 3019
14+
Pattern: "splunk.com"
15+
FileExtensions: []
16+
Description: "ignore splunk sales email"
17+
- Codes:
18+
- 3019
19+
Pattern: "github.com"
20+
FileExtensions: []
21+
Description: "ignore splunk sales email"

config/false-positives.json

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)