Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(ingest/looker): fix typos + update lookml github action example #6910

Merged
merged 1 commit into from
Dec 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion metadata-ingestion/docs/sources/looker/looker_pre.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Pre-Requisites
### Prerequisites

#### Set up the right permissions
You need to provide the following permissions for ingestion to work correctly.
Expand Down
11 changes: 5 additions & 6 deletions metadata-ingestion/docs/sources/looker/lookml_pre.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Pre-requisites
### Prerequisites

#### [Recommended] Create a GitHub Deploy Key

Expand Down Expand Up @@ -69,15 +69,14 @@ You need to set up the following secrets in your GitHub repository to get this w
- LOOKER_CLIENT_ID: A provisioned Looker Client ID
- LOOKER_CLIENT_SECRET: A provisioned Looker Client Secret

```
```yml
name: lookml metadata upload
on:
# Note that this action only runs on pushes to your main branch. If you want to also
# run on pull requests, we'd recommend running datahub ingest with the `--dry-run` flag.
push:
branches:
- main
paths-ignore:
- "docs/**"
- "**.md"
release:
types: [published, edited]
workflow_dispatch:
Expand All @@ -90,7 +89,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.10'
- name: Run LookML ingestion
run: |
pip install 'acryl-datahub[lookml,datahub-rest]'
Expand Down