Skip to content

Commit

Permalink
Merge pull request #1387 from guardian/ts/add-custom-props-cdk
Browse files Browse the repository at this point in the history
refactor: explicitly add custom props table to cloudquery source
  • Loading branch information
tjsilver authored Jan 10, 2025
2 parents e78e9cd + a7241d7 commit 649467e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15382,6 +15382,7 @@ spec:
- github_repositories
- github_repository_branches
- github_repository_collaborators
- github_repository_custom_properties
- github_workflows
skip_tables:
- github_releases
Expand Down Expand Up @@ -15610,7 +15611,7 @@ spec:
"Command": [
"/bin/sh",
"-c",
"psql -c "INSERT INTO cloudquery_table_frequency VALUES ('github_repositories', 'DAILY'),('github_repository_branches', 'DAILY'),('github_repository_collaborators', 'DAILY'),('github_workflows', 'DAILY') ON CONFLICT (table_name) DO UPDATE SET frequency = 'DAILY'"",
"psql -c "INSERT INTO cloudquery_table_frequency VALUES ('github_repositories', 'DAILY'),('github_repository_branches', 'DAILY'),('github_repository_collaborators', 'DAILY'),('github_repository_custom_properties', 'DAILY'),('github_workflows', 'DAILY') ON CONFLICT (table_name) DO UPDATE SET frequency = 'DAILY'"",
],
"DockerLabels": {
"App": "service-catalogue",
Expand Down
1 change: 1 addition & 0 deletions packages/cdk/lib/cloudquery/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,7 @@ export function addCloudqueryEcsCluster(
'github_repositories',
'github_repository_branches',
'github_repository_collaborators',
'github_repository_custom_properties',
'github_workflows',
],

Expand Down

0 comments on commit 649467e

Please sign in to comment.