https://github.com/felickz/custom-codeql
CodeQL customizations from @felickz!
https://github.com/felickz/custom-codeql
codeql
Last synced: 3 months ago
JSON representation
CodeQL customizations from @felickz!
- Host: GitHub
- URL: https://github.com/felickz/custom-codeql
- Owner: felickz
- Created: 2023-08-01T14:11:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-27T18:16:12.000Z (4 months ago)
- Last Synced: 2025-02-24T03:15:14.087Z (3 months ago)
- Topics: codeql
- Language: CodeQL
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# custom-codeql
This repository is intended to be a working directory for any custom CodeQL work until it finds a permanent home in OSS. I provide no warranty on the works within.
## Structure 🚧
```
|-- .github ( Contains GitHub Actions and helpers)
|-- config ( Contains CodeQL configuration files for various purposes)
|-- java
|-- debugging (Queries used for debugging Java CodeQL)```
## Getting Started
### Config file usage
Use the configuration files from any configuration!
```yml
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config-file: felickz/custom-codeql/config/codeql-synthetics.yml@main
```### Packaging Ex
```
codeql pack install .\java\
codeql pack create .\java\gh auth token | codeql pack publish .\java --github-auth-stdin
```