Skip to content

Commit 33a767e

Browse files
authored
chore(gcp): Fix linting issues (#11947)
#### Summary <!-- Explain what problem this PR addresses --> <!--
1 parent a9a4595 commit 33a767e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

plugins/source/gcp/resources/plugin/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func titleTransformer(table *schema.Table) {
9393
}
9494
csr := caser.New(caser.WithCustomExceptions(exceptions))
9595
t := csr.ToTitle(table.Name)
96-
table.Title = strings.Trim(strings.ReplaceAll(t, " ", " "), " ")
96+
table.Title = strings.Trim(strings.ReplaceAll(t, " ", " "), " ")
9797
for _, rel := range table.Relations {
9898
titleTransformer(rel)
9999
}

scripts/workflows/wait_for_required_workflows.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ module.exports = async ({github, context}) => {
4444
actions = ["cli (ubuntu-cli-large-runner)", "cli (windows-cli-large-runner)", "cli (macos-latest)", ...actions]
4545
}
4646

47-
// Enforce policy tests for AWS,GCP and K8s plugins
48-
const pluginsWithPolicyTests = ["plugins/source/aws", "plugins/source/azure", "plugins/source/gcp", "plugins/source/k8s"]
47+
// Enforce policy tests for AWS,Azure and K8s plugins
48+
const pluginsWithPolicyTests = ["plugins/source/aws", "plugins/source/azure", "plugins/source/k8s"]
4949
for (const plugin of pluginsWithPolicyTests) {
5050
if (actions.includes(plugin)) {
5151
actions = [...actions, 'test-policies']

0 commit comments

Comments
 (0)