gitextract_2_7u53o_/ ├── .gitattributes ├── .github/ │ ├── auto_assign.yml │ ├── dependabot.yml │ ├── labeler.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── auto-assign-issues.yml │ ├── auto-assign.yml │ ├── label-feature.yml │ ├── label-support.yml │ ├── labeler-triage.yml │ ├── lint.yaml │ ├── stale.yml │ ├── sync-ghes.yaml │ └── validate-data.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode/ │ └── launch.json ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── automation/ │ ├── greetings.yml │ ├── label.yml │ ├── manual.yml │ ├── properties/ │ │ ├── greetings.properties.json │ │ ├── label.properties.json │ │ ├── manual.properties.json │ │ ├── stale.properties.json │ │ └── summary.properties.json │ ├── stale.yml │ └── summary.yml ├── ci/ │ ├── ada.yml │ ├── android.yml │ ├── ant.yml │ ├── blank.yml │ ├── c-cpp.yml │ ├── clojure.yml │ ├── cmake-multi-platform.yml │ ├── cmake-single-platform.yml │ ├── crystal.yml │ ├── d.yml │ ├── dart.yml │ ├── datadog-synthetics.yml │ ├── deno.yml │ ├── django.yml │ ├── docker-image.yml │ ├── docker-publish.yml │ ├── dotnet-desktop.yml │ ├── dotnet.yml │ ├── elixir.yml │ ├── erlang.yml │ ├── gem-push.yml │ ├── generator-generic-ossf-slsa3-publish.yml │ ├── go-ossf-slsa3-publish.yml │ ├── go.yml │ ├── gradle-publish.yml │ ├── gradle.yml │ ├── haskell.yml │ ├── ios.yml │ ├── jekyll-docker.yml │ ├── laravel.yml │ ├── makefile.yml │ ├── maven-publish.yml │ ├── maven.yml │ ├── msbuild.yml │ ├── node.js.yml │ ├── npm-publish-github-packages.yml │ ├── npm-publish.yml │ ├── objective-c-xcode.yml │ ├── php.yml │ ├── properties/ │ │ ├── ada.properties.json │ │ ├── android.properties.json │ │ ├── ant.properties.json │ │ ├── blank.properties.json │ │ ├── c-cpp.properties.json │ │ ├── clojure.properties.json │ │ ├── cmake-multi-platform.properties.json │ │ ├── cmake-single-platform.properties.json │ │ ├── crystal.properties.json │ │ ├── d.properties.json │ │ ├── dart.properties.json │ │ ├── datadog-synthetics.properties.json │ │ ├── deno.properties.json │ │ ├── django.properties.json │ │ ├── docker-image.properties.json │ │ ├── docker-publish.properties.json │ │ ├── dotnet-desktop.properties.json │ │ ├── dotnet.properties.json │ │ ├── elixir.properties.json │ │ ├── erlang.properties.json │ │ ├── gem-push.properties.json │ │ ├── generator-generic-ossf-slsa3-publish.properties.json │ │ ├── go-ossf-slsa3-publish.properties.json │ │ ├── go.properties.json │ │ ├── gradle-publish.properties.json │ │ ├── gradle.properties.json │ │ ├── haskell.properties.json │ │ ├── ios.properties.json │ │ ├── jekyll-docker.properties.json │ │ ├── laravel.properties.json │ │ ├── makefile.properties.json │ │ ├── maven-publish.properties.json │ │ ├── maven.properties.json │ │ ├── msbuild.properties.json │ │ ├── node.js.properties.json │ │ ├── npm-publish-github-packages.properties.json │ │ ├── npm-publish.properties.json │ │ ├── objective-c-xcode.properties.json │ │ ├── php.properties.json │ │ ├── pylint.properties.json │ │ ├── python-app.properties.json │ │ ├── python-package-conda.properties.json │ │ ├── python-package.properties.json │ │ ├── python-publish.properties.json │ │ ├── r.properties.json │ │ ├── ruby.properties.json │ │ ├── rubyonrails.properties.json │ │ ├── rust.properties.json │ │ ├── scala.properties.json │ │ ├── super-linter.properties.json │ │ ├── swift.properties.json │ │ ├── symfony.properties.json │ │ └── webpack.properties.json │ ├── pylint.yml │ ├── python-app.yml │ ├── python-package-conda.yml │ ├── python-package.yml │ ├── python-publish.yml │ ├── r.yml │ ├── ruby.yml │ ├── rubyonrails.yml │ ├── rust.yml │ ├── scala.yml │ ├── super-linter.yml │ ├── swift.yml │ ├── symfony.yml │ └── webpack.yml ├── code-scanning/ │ ├── README.md │ ├── anchore-syft.yml │ ├── anchore.yml │ ├── apisec-scan.yml │ ├── appknox.yml │ ├── bandit.yml │ ├── bearer.yml │ ├── black-duck-security-scan-ci.yml │ ├── brakeman.yml │ ├── checkmarx-one.yml │ ├── checkmarx.yml │ ├── clj-holmes.yml │ ├── clj-watson.yml │ ├── cloudrail.yml │ ├── codacy.yml │ ├── codeql.yml │ ├── codescan.yml │ ├── contrast-scan.yml │ ├── crda.yml │ ├── credo.yml │ ├── crunch42.yml │ ├── datree.yml │ ├── debricked.yml │ ├── defender-for-devops.yml │ ├── dependency-review.yml │ ├── detekt.yml │ ├── devskim.yml │ ├── endorlabs.yml │ ├── eslint.yml │ ├── ethicalcheck.yml │ ├── flawfinder.yml │ ├── fortify.yml │ ├── frogbot-scan-and-fix.yml │ ├── frogbot-scan-pr.yml │ ├── hadolint.yml │ ├── jfrog-sast.yml │ ├── jscrambler-code-integrity.yml │ ├── kubesec.yml │ ├── lintr.yml │ ├── mayhem-for-api.yml │ ├── mobsf.yml │ ├── msvc.yml │ ├── neuralegion.yml │ ├── njsscan.yml │ ├── nowsecure-mobile-sbom.yml │ ├── nowsecure.yml │ ├── ossar.yml │ ├── osv-scanner.yml │ ├── phpmd.yml │ ├── pmd.yml │ ├── policy-validator-cfn.yaml │ ├── policy-validator-tf.yaml │ ├── powershell.yml │ ├── prisma.yml │ ├── properties/ │ │ ├── anchore-syft.properties.json │ │ ├── anchore.properties.json │ │ ├── apisec-scan.properties.json │ │ ├── appknox.properties.json │ │ ├── bandit.properties.json │ │ ├── bearer.properties.json │ │ ├── black-duck-security-scan-ci.properties.json │ │ ├── brakeman.properties.json │ │ ├── checkmarx-one.properties.json │ │ ├── checkmarx.properties.json │ │ ├── clj-holmes.properties.json │ │ ├── clj-watson.properties.json │ │ ├── cloudrail.properties.json │ │ ├── codacy.properties.json │ │ ├── codeql.properties.json │ │ ├── codescan.properties.json │ │ ├── contrast-scan.properties.json │ │ ├── crda.properties.json │ │ ├── credo.properties.json │ │ ├── crunch42.properties.json │ │ ├── datree.properties.json │ │ ├── debricked.properties.json │ │ ├── defender-for-devops.properties.json │ │ ├── dependency-review.properties.json │ │ ├── detekt.properties.json │ │ ├── devskim.properties.json │ │ ├── endorlabs.properties.json │ │ ├── eslint.properties.json │ │ ├── ethicalcheck.properties.json │ │ ├── flawfinder.properties.json │ │ ├── fortify.properties.json │ │ ├── frogbot-scan-and-fix.properties.json │ │ ├── frogbot-scan-pr.properties.json │ │ ├── hadolint.properties.json │ │ ├── jfrog-sast.properties.json │ │ ├── jscrambler-code-integrity.properties.json │ │ ├── kubesec.properties.json │ │ ├── lintr.properties.json │ │ ├── mayhem-for-api.properties.json │ │ ├── mobsf.properties.json │ │ ├── msvc.properties.json │ │ ├── neuralegion.properties.json │ │ ├── njsscan.properties.json │ │ ├── nowsecure-mobile-sbom.properties.json │ │ ├── nowsecure.properties.json │ │ ├── ossar.properties.json │ │ ├── osv-scanner.properties.json │ │ ├── phpmd.properties.json │ │ ├── pmd.properties.json │ │ ├── policy-validator-cfn.properties.json │ │ ├── policy-validator-tf.properties.json │ │ ├── powershell.properties.json │ │ ├── prisma.properties.json │ │ ├── psalm.properties.json │ │ ├── puppet-lint.properties.json │ │ ├── pyre.properties.json │ │ ├── pysa.properties.json │ │ ├── rubocop.properties.json │ │ ├── rust-clippy.properties.json │ │ ├── scorecard.properties.json │ │ ├── securitycodescan.properties.json │ │ ├── semgrep.properties.json │ │ ├── snyk-container.properties.json │ │ ├── snyk-infrastructure.properties.json │ │ ├── snyk-security.properties.json │ │ ├── sobelow.properties.json │ │ ├── sonarcloud.properties.json │ │ ├── sonarqube.properties.json │ │ ├── soos-dast-scan.properties.json │ │ ├── stackhawk.properties.json │ │ ├── synopsys-action.properties.json │ │ ├── synopsys-io.properties.json │ │ ├── sysdig-scan.properties.json │ │ ├── tfsec.properties.json │ │ ├── trivy.properties.json │ │ ├── veracode.properties.json │ │ ├── xanitizer.properties.json │ │ ├── zscaler-iac-scan.properties.json │ │ └── zscan.properties.json │ ├── psalm.yml │ ├── puppet-lint.yml │ ├── pyre.yml │ ├── pysa.yml │ ├── rubocop.yml │ ├── rust-clippy.yml │ ├── scorecard.yml │ ├── securitycodescan.yml │ ├── semgrep.yml │ ├── snyk-container.yml │ ├── snyk-infrastructure.yml │ ├── snyk-security.yml │ ├── sobelow.yml │ ├── sonarcloud.yml │ ├── sonarqube.yml │ ├── soos-dast-scan.yml │ ├── stackhawk.yml │ ├── synopsys-action.yml │ ├── synopsys-io.yml │ ├── sysdig-scan.yml │ ├── tfsec.yml │ ├── trivy.yml │ ├── veracode.yml │ ├── xanitizer.yml │ ├── zscaler-iac-scan.yml │ └── zscan.yml ├── deployments/ │ ├── alibabacloud.yml │ ├── aws.yml │ ├── azure-container-webapp.yml │ ├── azure-functions-app-container.yml │ ├── azure-functions-app-dotnet.yml │ ├── azure-functions-app-java-gradle.yml │ ├── azure-functions-app-java.yml │ ├── azure-functions-app-nodejs.yml │ ├── azure-functions-app-powershell.yml │ ├── azure-functions-app-python.yml │ ├── azure-kubernetes-service-helm.yml │ ├── azure-kubernetes-service-kompose.yml │ ├── azure-kubernetes-service-kustomize.yml │ ├── azure-kubernetes-service.yml │ ├── azure-staticwebapp.yml │ ├── azure-webapps-dotnet-core.yml │ ├── azure-webapps-java-jar-gradle.yml │ ├── azure-webapps-java-jar.yml │ ├── azure-webapps-node.yml │ ├── azure-webapps-php.yml │ ├── azure-webapps-python.yml │ ├── google-cloudrun-docker.yml │ ├── google-cloudrun-source.yml │ ├── google.yml │ ├── ibm.yml │ ├── octopusdeploy.yml │ ├── openshift.yml │ ├── properties/ │ │ ├── alibabacloud.properties.json │ │ ├── aws.properties.json │ │ ├── azure-container-webapp.properties.json │ │ ├── azure-functions-app-container.properties.json │ │ ├── azure-functions-app-dotnet.properties.json │ │ ├── azure-functions-app-java-gradle.properties.json │ │ ├── azure-functions-app-java.properties.json │ │ ├── azure-functions-app-nodejs.properties.json │ │ ├── azure-functions-app-powershell.properties.json │ │ ├── azure-functions-app-python.properties.json │ │ ├── azure-kubernetes-service-helm.properties.json │ │ ├── azure-kubernetes-service-kompose.properties.json │ │ ├── azure-kubernetes-service-kustomize.properties.json │ │ ├── azure-kubernetes-service.properties.json │ │ ├── azure-staticwebapp.properties.json │ │ ├── azure-webapps-dotnet-core.properties.json │ │ ├── azure-webapps-java-jar-gradle.properties.json │ │ ├── azure-webapps-java-jar.properties.json │ │ ├── azure-webapps-node.properties.json │ │ ├── azure-webapps-php.properties.json │ │ ├── azure-webapps-python.properties.json │ │ ├── google-cloudrun-docker.properties.json │ │ ├── google-cloudrun-source.properties.json │ │ ├── google.properties.json │ │ ├── ibm.properties.json │ │ ├── octopusdeploy.properties.json │ │ ├── openshift.properties.json │ │ ├── tencent.properties.json │ │ └── terraform.properties.json │ ├── tencent.yml │ └── terraform.yml ├── pages/ │ ├── astro.yml │ ├── gatsby.yml │ ├── hugo.yml │ ├── jekyll-gh-pages.yml │ ├── jekyll.yml │ ├── mdbook.yml │ ├── nextjs.yml │ ├── nuxtjs.yml │ ├── properties/ │ │ ├── astro.properties.json │ │ ├── gatsby.properties.json │ │ ├── hugo.properties.json │ │ ├── jekyll-gh-pages.properties.json │ │ ├── jekyll.properties.json │ │ ├── mdbook.properties.json │ │ ├── nextjs.properties.json │ │ ├── nuxtjs.properties.json │ │ └── static.properties.json │ └── static.yml └── script/ ├── sync-ghes/ │ ├── exec.ts │ ├── index.ts │ ├── package.json │ ├── settings.json │ └── tsconfig.json └── validate-data/ ├── index.ts ├── package.json ├── settings.json └── tsconfig.json