-
Notifications
You must be signed in to change notification settings - Fork 9
[v6 PROD RELEASE] - dev -> master #130
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
Changes from all commits
6f1ef83
a6bbd91
c0a0e3a
b4cdbf6
3d9eb92
a84d585
0582798
2ad2cdd
45fa146
6ee41d2
1682350
15210c2
bb35775
b520e44
8060c79
c70c70a
a639d46
2cff0e0
54464e9
d977c40
634a0cc
2f702f1
cdc2755
172449f
e0bc50a
032ed4e
f77ae40
f9f1229
f7b9f9a
54fff64
f56e2e7
bfc2fdb
06ce94f
15125ab
580a97a
bf95ebf
3bc5d54
e4ca78e
1dabf7c
9d445c8
9292153
f8f667d
77db0d1
405a0a1
bc1fa9f
0cac1ca
4317c09
e0bbc81
ef42e7e
1b8bbfd
afb492d
9c40d78
6167afb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -77,6 +77,7 @@ workflows: | |
| - feat/ai-workflows | ||
| - pm-1955_2 | ||
| - re-try-failed-jobs | ||
| - pm-2539 | ||
|
|
||
|
|
||
| - 'build-prod': | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| name: Trivy Scanner | ||
|
|
||
| permissions: | ||
| contents: read | ||
| security-events: write | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - dev | ||
| pull_request: | ||
| jobs: | ||
| trivy-scan: | ||
| name: Use Trivy | ||
| runs-on: ubuntu-24.04 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [ |
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Run Trivy scanner in repo mode | ||
| uses: aquasecurity/trivy-action@0.33.1 | ||
| with: | ||
| scan-type: "fs" | ||
| ignore-unfixed: true | ||
| format: "sarif" | ||
| output: "trivy-results.sarif" | ||
| severity: "CRITICAL,HIGH,UNKNOWN" | ||
| scanners: vuln,secret,misconfig,license | ||
| github-pat: ${{ secrets.GITHUB_TOKEN }} | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [❗❗ |
||
|
|
||
| - name: Upload Trivy scan results to GitHub Security tab | ||
| uses: github/codeql-action/upload-sarif@v3 | ||
| with: | ||
| sarif_file: "trivy-results.sarif" | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -589,8 +589,9 @@ model ChallengeReviewer { | |
| isMemberReview Boolean | ||
| memberReviewerCount Int? | ||
| phaseId String | ||
| basePayment Float? | ||
| incrementalPayment Float? | ||
| fixedAmount Float? @default(0) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [ |
||
| baseCoefficient Float? | ||
| incrementalCoefficient Float? | ||
| type ReviewOpportunityTypeEnum? | ||
| aiWorkflowId String? @db.VarChar(14) | ||
|
|
||
|
|
@@ -622,8 +623,9 @@ model DefaultChallengeReviewer { | |
| isMemberReview Boolean | ||
| memberReviewerCount Int? | ||
| phaseName String | ||
| basePayment Float? | ||
| incrementalPayment Float? | ||
| fixedAmount Float? @default(0) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [ |
||
| baseCoefficient Float? | ||
| incrementalCoefficient Float? | ||
| opportunityType ReviewOpportunityTypeEnum? | ||
| isAIReviewer Boolean | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[💡
style]Consider adding a newline at the end of the file to adhere to POSIX standards. This can help avoid issues with some tools that expect a newline at the end of files.