dbt_repo_activity_contributors_weekly #2469
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dbt_repo_activity_contributors_weekly | |
run-name: dbt_repo_activity_contributors_weekly | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 */1 * * 1-3" # Run every Monday, Tuesday, and Wednesday | |
env: | |
DBT_PROFILES_DIR: "${{ vars.DBT_PROFILES_DIR }}" | |
DBT_VERSION: "${{ vars.DBT_VERSION }}" | |
ACCOUNT: "${{ vars.ACCOUNT }}" | |
ROLE: "${{ vars.ROLE }}" | |
USER: "${{ vars.USER }}" | |
PASSWORD: "${{ secrets.PASSWORD }}" | |
REGION: "${{ vars.REGION }}" | |
DATABASE: "${{ vars.DATABASE }}" | |
WAREHOUSE: "${{ vars.WAREHOUSE }}" | |
SCHEMA: "${{ vars.SCHEMA }}" | |
concurrency: | |
group: ${{ github.workflow }} | |
jobs: | |
dbt: | |
runs-on: ubuntu-latest | |
environment: | |
name: workflow_prod | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: install dependencies | |
run: | | |
pip3 install git+https://github.com/wbond/oscrypto.git@1547f535001ba568b239b8797465536759c742a3 | |
pip3 install dbt-snowflake==${{ env.DBT_VERSION }} cli_passthrough requests click | |
dbt deps | |
- name: Run DBT Jobs | |
run: | | |
dbt run-operation get_github_repo_data --args "{GITHUB_TOKEN: 'TOKEN', frequency: ['contributors']}" | |
dbt run -m "crosschain_models,tag:github_activity" | |
dbt test -s github_data_null |