-
Notifications
You must be signed in to change notification settings - Fork 3
Add .security_config directory #240
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
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 |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # yaml-language-server: $schema=https://security-api.appsec.inday.io/schemas/security_config.json | ||
| # This is the configuration file for Chimera. This file is required to allow the scanning platform to scan your repo. | ||
| # Please see https://wolinks.com/chimera for details. | ||
|
|
||
| ##################### | ||
| # SLACK CONFIGURATION | ||
| ##################### | ||
| # Uncomment the below section and provide a Slack channel's name to allow Chimera to | ||
| # notify your slack channel about scans. Please see Chimera documentation on how to do this. | ||
| slack: | ||
| enabled: true | ||
| channel: pd-workflows | ||
|
|
||
| ########################## | ||
| # SCAN TOOL CONFIGURATION | ||
| ########################## | ||
| tools_config: | ||
| snyk: {} | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| # This file contains contact info for the team that maintains | ||
| # this repo. This information will be used by security in the | ||
| # event that we need to contact you about security issues | ||
| # discovered in this code. | ||
| # | ||
| # See https://wolinks.com/repocontact for more information. | ||
| # | ||
| # You may use the Red Hat YAML extension in VS Code to validate this file. | ||
| # yaml-language-server: $schema=https://security-api.appsec.inday.io/schemas/security_contact.json | ||
|
Comment on lines
+1
to
+9
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. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Verify that the schema and documentation URLs are accessible
echo "Checking schema URL..."
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" "https://security-api.appsec.inday.io/schemas/security_contact.json"
echo "Checking documentation URL..."
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" "https://wolinks.com/repocontact"Repository: PipedreamHQ/pipedream-sdk-java Length of output: 160 The schema URL is not accessible and will prevent VS Code validation. The schema URL on line 9 ( 🤖 Prompt for AI Agents |
||
|
|
||
| version: "1.0" | ||
| include: "git::https://github.com/PipedreamHQ/pipedreamin" | ||
|
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. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Check if the repository exists
echo "Checking if pipedreamin repository exists..."
gh repo view PipedreamHQ/pipedreamin --json nameWithOwner 2>&1
echo -e "\nChecking if pipedream repository exists..."
gh repo view PipedreamHQ/pipedream --json nameWithOwner 2>&1Repository: PipedreamHQ/pipedream-sdk-java Length of output: 301 Correct the include repository URL - typo in repository name. The include URL references a non-existent repository 🤖 Prompt for AI Agents |
||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: PipedreamHQ/pipedream-sdk-java
Length of output: 160
Fix the schema URL reference — it is not accessible and will prevent YAML validation.
The schema URL at line 1 (
https://security-api.appsec.inday.io/schemas/security_config.json) returns a connection failure (HTTP 000), preventing the YAML language server from validating this configuration file. Update the URL to a valid, accessible schema endpoint or remove the reference if the schema is no longer available.🤖 Prompt for AI Agents