You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Must tell .github/workflows/codeql.yml to ignore these folders:
art
doc
rust/benches
rust/examples
rust/examples-frontend
worker/deps
worker/subprojects
worker/scripts
worker/fuzzer
worker/out
There is a paths-ignore field in CodeQL that is just valid for interpreted languages (Python, JS, TS), however it doesn't work for compiled languages in which complex stuff must be done.
I found this but I don't understand it plus it seems to be outdated for CodeQL v1 CI actions.
This is not currently possible. If you're in the new Code Search beta you can exclude paths from your search by using a regex like this: NOT path:/worker\/deps/
For now I'll remove .gitattributes from mediasoup repo since it has zero value now.
The text was updated successfully, but these errors were encountered:
This is not currently possible. If you're in the new Code Search beta you can exclude paths from your search by using a regex like this: NOT path:/worker\/deps/
For now I'll remove .gitattributes from mediasoup repo since it has zero value now.
Must tell
.github/workflows/codeql.yml
to ignore these folders:There is a paths-ignore field in CodeQL that is just valid for interpreted languages (Python, JS, TS), however it doesn't work for compiled languages in which complex stuff must be done.
I found this but I don't understand it plus it seems to be outdated for CodeQL v1 CI actions.
UPDATE: As discussed here https://github.com/orgs/community/discussions/42654,
.gitattributes
is no longer valid to tell Code Search which folders to include/exclude, so:For now I'll remove
.gitattributes
from mediasoup repo since it has zero value now.The text was updated successfully, but these errors were encountered: