Skip to content

Commit 29e8b6c

Browse files
authored
Merge pull request #1081 from actions/nickfyson/add-codeql-to-ghes
Nickfyson/add codeql to ghes
2 parents ff4d33e + c2cc54a commit 29e8b6c

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

script/sync-ghes/index.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function checkWorkflows(
4545
});
4646

4747
for (const e of dir) {
48-
if (e.isFile()) {
48+
if (e.isFile() && extname(e.name) === ".yml") {
4949
const workflowFilePath = join(folder, e.name);
5050
const workflowId = basename(e.name, extname(e.name));
5151
const workflowProperties: WorkflowProperties = require(join(
@@ -58,7 +58,7 @@ async function checkWorkflows(
5858
const isPartnerWorkflow = workflowProperties.creator ? partnersSet.has(workflowProperties.creator.toLowerCase()) : false;
5959

6060
const enabled =
61-
!isPartnerWorkflow &&
61+
!isPartnerWorkflow &&
6262
(await checkWorkflow(workflowFilePath, enabledActions));
6363

6464
const workflowDesc: WorkflowDesc = {
@@ -104,7 +104,8 @@ async function checkWorkflow(
104104
if (!!step.uses) {
105105
// Check if allowed action
106106
const [actionName, _] = step.uses.split("@");
107-
if (!enabledActionsSet.has(actionName.toLowerCase())) {
107+
const actionNwo = actionName.split("/").slice(0, 2).join("/");
108+
if (!enabledActionsSet.has(actionNwo.toLowerCase())) {
108109
console.info(
109110
`Workflow ${workflowPath} uses '${actionName}' which is not supported for GHES.`
110111
);

script/sync-ghes/settings.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"folders": [
33
"../../ci",
44
"../../automation",
5-
"../../deployments"
5+
"../../deployments",
6+
"../../code-scanning"
67
],
78
"enabledActions": [
89
"actions/checkout",
@@ -16,7 +17,8 @@
1617
"actions/stale",
1718
"actions/starter-workflows",
1819
"actions/upload-artifact",
19-
"actions/upload-release-asset"
20+
"actions/upload-release-asset",
21+
"github/codeql-action"
2022
],
2123
"partners": [
2224
"Alibaba Cloud",

0 commit comments

Comments
 (0)