Skip to content

Commit

Permalink
Auto-sync by GithubPrSyncer
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornylu committed May 23, 2024
1 parent 8654dff commit 3a96d5e
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/hello.yml
Original file line number Diff line number Diff line change
@@ -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!"
26 changes: 26 additions & 0 deletions profiles.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3a96d5e

Please sign in to comment.