DQ-463 enhancement(api): modify downstream asset fetch #386
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: Test Action | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened, closed] | |
jobs: | |
get-downstream-assets: | |
name: Get Downstream Assets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: | | |
echo "$GITHUB_CONTEXT" | |
- name: Run Action | |
uses: ./ | |
with: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
ATLAN_INSTANCE_URL: ${{secrets.ATLAN_INSTANCE_URL}} | |
ATLAN_API_TOKEN: ${{secrets.ATLAN_API_TOKEN}} | |
DBT_ENVIRONMENT_BRANCH_MAP: | | |
main: DBT-DEMO-PROD | |
beta: Wide World Importers PE1 | |
test-action: Wide World Importers PE1 | |
IGNORE_MODEL_ALIAS_MATCHING: true |