From 179cc18d84b1d23a0af44db458a2064648f603af Mon Sep 17 00:00:00 2001 From: "prsync[bot]" Date: Thu, 23 May 2024 08:20:13 +0000 Subject: [PATCH] Auto-sync by GithubPrSyncer --- .github/workflows/hello.yml | 16 ++++++++++++++++ profiles.yml | 26 ++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .github/workflows/hello.yml create mode 100644 profiles.yml diff --git a/.github/workflows/hello.yml b/.github/workflows/hello.yml new file mode 100644 index 000000000..9105ebb83 --- /dev/null +++ b/.github/workflows/hello.yml @@ -0,0 +1,16 @@ +name: Hello World Workflow + +on: + pull_request: + types: [opened, synchronize] + +jobs: + hello-world-job: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Print Hello, World! + run: echo "Hello, World!" diff --git a/profiles.yml b/profiles.yml new file mode 100644 index 000000000..44f94cf68 --- /dev/null +++ b/profiles.yml @@ -0,0 +1,26 @@ +opensource_observer: + outputs: + playground: + type: bigquery + method: service-account + keyfile: "{{ env_var('DBT_GOOGLE_KEYFILE') }}" + project: "{{ env_var('DBT_GOOGLE_PROJECT') }}" + dataset: "{{ env_var('DBT_GOOGLE_DATASET') }}" + job_execution_time_seconds: 300 + job_retries: 1 + location: US + threads: 32 + dev: + type: bigquery + method: service-account + keyfile: "{{ env_var('DBT_GOOGLE_KEYFILE') }}" + project: "{{ env_var('DBT_GOOGLE_PROJECT') }}" + dataset: "{{ env_var('DBT_GOOGLE_DEV_DATASET') }}" + job_execution_time_seconds: 300 + job_retries: 1 + location: US + threads: 32 + # By default we target the playground. it's less costly and also safer to write + # there while developing + target: playground +