Skip to content

Commit 7227ef9

Browse files
committed
update tags
1 parent e05ce1e commit 7227ef9

10 files changed

Lines changed: 11 additions & 11 deletions

definitions/output/reports/tech_crux.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ publish('tech_crux', {
99
clusterBy: ['geo', 'client', 'rank', 'technology'],
1010
requirePartitionFilter: true
1111
},
12-
tags: ['tech_report'],
13-
dependOnDependencyAssertions: true
12+
dependOnDependencyAssertions: true,
13+
tags: ['crux_ready']
1414
}).preOps(ctx => `
1515
DELETE FROM ${ctx.self()}
1616
WHERE date = '${pastMonth}';

definitions/output/reports/tech_report_adoption.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish('tech_report_adoption', {
88
partitionBy: 'date',
99
clusterBy: ['rank', 'geo']
1010
},
11-
tags: ['tech_report']
11+
tags: ['crux_ready']
1212
}).preOps(ctx => `
1313
DELETE FROM ${ctx.self()}
1414
WHERE date = '${pastMonth}';

definitions/output/reports/tech_report_audits.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish('tech_report_audits', {
88
partitionBy: 'date',
99
clusterBy: ['rank', 'geo']
1010
},
11-
tags: ['tech_report']
11+
tags: ['crux_ready']
1212
}).preOps(ctx => `
1313
CREATE TEMP FUNCTION GET_AUDITS(
1414
records ARRAY<STRUCT<

definitions/output/reports/tech_report_categories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const pastMonth = constants.fnPastMonth(constants.currentMonth)
33
publish('tech_report_categories', {
44
schema: 'reports',
55
type: 'table',
6-
tags: ['tech_report']
6+
tags: ['crux_ready']
77
}).query(ctx => `
88
WITH pages AS (
99
SELECT DISTINCT

definitions/output/reports/tech_report_core_web_vitals.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish('tech_report_core_web_vitals', {
88
partitionBy: 'date',
99
clusterBy: ['rank', 'geo']
1010
},
11-
tags: ['tech_report']
11+
tags: ['crux_ready']
1212
}).preOps(ctx => `
1313
CREATE TEMPORARY FUNCTION GET_VITALS(
1414
records ARRAY<STRUCT<

definitions/output/reports/tech_report_lighthouse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish('tech_report_lighthouse', {
88
partitionBy: 'date',
99
clusterBy: ['rank', 'geo']
1010
},
11-
tags: ['tech_report']
11+
tags: ['crux_ready']
1212
}).preOps(ctx => `
1313
CREATE TEMPORARY FUNCTION GET_LIGHTHOUSE(
1414
records ARRAY<STRUCT<

definitions/output/reports/tech_report_page_weight.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish('tech_report_page_weight', {
88
partitionBy: 'date',
99
clusterBy: ['rank', 'geo']
1010
},
11-
tags: ['tech_report']
11+
tags: ['crux_ready']
1212
}).preOps(ctx => `
1313
CREATE TEMPORARY FUNCTION GET_PAGE_WEIGHT(
1414
records ARRAY<STRUCT<

definitions/output/reports/tech_report_technologies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const pastMonth = constants.fnPastMonth(constants.currentMonth)
33
publish('tech_report_technologies', {
44
schema: 'reports',
55
type: 'table',
6-
tags: ['tech_report']
6+
tags: ['crux_ready']
77
}).query(ctx => `
88
WITH tech_origins AS (
99
SELECT

definitions/output/reports/tech_report_versions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const pastMonth = constants.fnPastMonth(constants.currentMonth)
33
publish('tech_report_versions', {
44
schema: 'reports',
55
type: 'table',
6-
tags: ['tech_report']
6+
tags: ['crux_ready']
77
}).query(ctx => `
88
SELECT
99
technology,

infra/dataform-trigger/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ FROM crux, report;
3131
action: 'runDataformRepo',
3232
actionArgs: {
3333
repoName: 'crawl-data',
34-
tags: ['tech_report']
34+
tags: ['crux_ready']
3535
}
3636
},
3737
crawl_complete: {

0 commit comments

Comments
 (0)