mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 09:40:17 +08:00
12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
const WEBHOOK_HEADERS = [
|
|
"x-github-event",
|
|
"x-hub-signature-256",
|
|
"x-github-delivery"
|
|
];
|
|
function getMissingHeaders(request) {
|
|
return WEBHOOK_HEADERS.filter((header) => !(header in request.headers));
|
|
}
|
|
export {
|
|
getMissingHeaders
|
|
};
|