Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…r_block.git into dev-andres-gregori-altamirano-wdzd
  • Loading branch information
looker committed Jul 8, 2024
2 parents dc790dd + 99d9bc5 commit a4ea34f
Show file tree
Hide file tree
Showing 65 changed files with 15,829 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: release

on:
workflow_dispatch:
push:
branches:
- master

# Cancels an release workflows in progress
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true

jobs:
release:
permissions:
contents: write
pull-requests: write
uses: looker-open-source/reusable-actions/.github/workflows/marketplace-block-release.yml@main
secrets: inherit
5 changes: 5 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
THIS PROJECT DOES NOT ACCEPT PATCHES OR CONTRIBUTIONS.

Please contribute to our other projects like [looker-open-source/sdk-codegen](https://github.com/looker-open-source/sdk-codegen).

This project follows [Google's Open Source Community Guidelines](https://opensource.google/conduct/).
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Google

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
323 changes: 323 additions & 0 deletions README.md

Large diffs are not rendered by default.

Empty file added attributes/.gitkeep
Empty file.
8 changes: 8 additions & 0 deletions attributes/datagroups.lkml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
datagroup: bqml_datagroup {
#retrain model every week
sql_trigger: SELECT EXTRACT(week from CURRENT_DATE()) ;;
}
datagroup: attribution_channel{
# re builds dummy tables for channel acquisition
sql_trigger: SELECT EXTRACT(month from CURRENT_DATE()) ;;
}
7 changes: 7 additions & 0 deletions attributes/formats.lkml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
named_value_format: hour_format {
value_format: "[h]:mm:ss"
}

named_value_format: formatted_number {
value_format:"[<1000]0;[<1000000]0.0,\"K\";0.0,,\"M\""
}
Empty file added dashboards/.gitkeep
Empty file.
Loading

0 comments on commit a4ea34f

Please sign in to comment.