Skip to content

Commit a7e27eb

Browse files
committed
Merge branch 'main' into tjbanghart/fat-jar
2 parents 408722c + c37c508 commit a7e27eb

File tree

997 files changed

+64151
-143269
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

997 files changed

+64151
-143269
lines changed

.editorconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ end_of_line = lf
44
insert_final_newline = true
55
trim_trailing_whitespace = true
66

7-
[*.{kt,gradle}]
7+
[*.{kt,kts}]
88
indent_style = space
99
indent_size = 4
10+
ktlint_standard_no-wildcard-imports = disabled
11+
ktlint_standard_filename = disabled
12+
ktlint_standard_enum-entry-name-case = disabled

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @looker-open-source/cloud-looker-devrel

.github/pull_request_template.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
## Developer Checklist [ℹ️](https://github.com/looker-open-source/sdk-codegen/blob/main/CONTRIBUTING.md#developer-checklist)
88

99
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
10-
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/looker-open-source/sdk-codegen/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
10+
11+
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/looker-open-source/sdk-codegen/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
1112
- [ ] Ensure the tests and linter pass
1213
- [ ] Appropriate docs were updated (if necessary)
1314

.github/workflows/apix-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: API Explorer CI
22
on:
33
pull_request:
44
paths:
5+
- package.json
56
- packages/code-editor/**
67
- packages/run-it/**
78
- packages/api-explorer/**
@@ -13,6 +14,7 @@ on:
1314
branches:
1415
- main
1516
paths:
17+
- package.json
1618
- packages/code-editor/**
1719
- packages/run-it/**
1820
- packages/api-explorer/**
@@ -37,7 +39,7 @@ jobs:
3739
matrix:
3840
os:
3941
- ubuntu
40-
node-version: [16.x]
42+
node-version: [18.x]
4143

4244
steps:
4345
- name: Cancel Previous Runs

.github/workflows/codegen-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Codegen CI
22
on:
33
pull_request:
44
paths:
5+
- package.json
56
- packages/sdk-codegen/**
67
- packages/sdk-codegen-utils/**
78
- packages/sdk-codegen-scripts/**
@@ -11,6 +12,7 @@ on:
1112
branches:
1213
- main
1314
paths:
15+
- package.json
1416
- packages/sdk-codegen/**
1517
- packages/sdk-codegen-utils/**
1618
- packages/sdk-codegen-scripts/**
@@ -71,7 +73,7 @@ jobs:
7173
7274
- uses: actions/setup-node@v3
7375
with:
74-
node-version: 16.x
76+
node-version: 18.x
7577

7678
- name: Install dependencies
7779
run: |

.github/workflows/fix-npm.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Fix NPM info
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
8+
fix:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Get NPM token last 8
12+
run: echo $NODE_AUTH_TOKEN | sed 's/^.*\(.\{8\}\)$/\1/'
13+
env:
14+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_RELEASE_BACKED }}

.github/workflows/go-ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
uses: looker-open-source/reusable-actions/.github/workflows/supported-versions.yml@main
7171

7272
integration:
73-
needs: [setup,unit]
73+
needs: [setup, unit]
7474
name: Integration - ${{ matrix.os }} / Looker.${{ matrix.looker }}
7575
env:
7676
LOOKERSDK_CLIENT_ID: ${{ secrets.LOOKERSDK_CLIENT_ID }}
@@ -85,7 +85,8 @@ jobs:
8585
matrix:
8686
os:
8787
- ubuntu
88-
looker: ${{ fromJson(needs.setup.outputs.matrix_json) }}
88+
looker:
89+
${{ fromJson(needs.setup.outputs.matrix_json) }}
8990

9091
# TODO uncomment `include:` when either macos or windows works to satisfaction.
9192
#include:

.github/workflows/hackathon-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Hackathon CI
22
on:
33
pull_request:
44
paths:
5+
- package.json
56
- packages/wholly-artifact/**
67
- packages/hackathon/**
78
- .github/workflows/hackathon-ci.yml
@@ -10,6 +11,7 @@ on:
1011
branches:
1112
- main
1213
paths:
14+
- package.json
1315
- packages/wholly-artifact/**
1416
- packages/hackathon/**
1517
- .github/workflows/hackathon-ci.yml
@@ -31,7 +33,7 @@ jobs:
3133
matrix:
3234
os:
3335
- ubuntu
34-
node-version: [16.x]
36+
node-version: [18.x]
3537

3638
steps:
3739
- name: Cancel Previous Runs

.github/workflows/lerna-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
5757
- uses: actions/setup-node@v3
5858
with:
59-
node-version: 16
59+
node-version: 18.x
6060
registry-url: https://wombat-dressing-room.appspot.com
6161

6262
- name: Install dependencies and build
@@ -74,7 +74,7 @@ jobs:
7474
echo "client_secret=secret" >> looker.ini
7575
echo "verify_ssl=False" >> looker.ini
7676
echo "timeout=31" >> looker.ini
77-
echo "[Looker31]" >> looker.ini
77+
echo "[Looker40]" >> looker.ini
7878
echo "base_url=https://self-signed.looker.com:19999" >> looker.ini
7979
echo "verify_ssl=False" >> looker.ini
8080
echo "timeout=30" >> looker.ini
@@ -84,6 +84,6 @@ jobs:
8484
${{ github.workspace }}/.github/scripts/wait_for_looker.sh
8585
8686
- name: Publish to NPM registry
87-
run: $(npm bin)/lerna publish from-package --yes --no-verify-access
87+
run: npx lerna publish from-package --yes --no-verify-access
8888
env:
8989
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_RELEASE_BACKED }}

.github/workflows/p3-issue-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
owner: context.repo.owner,
1919
repo: context.repo.repo,
2020
labels: ["p3"]
21-
})
21+
})

0 commit comments

Comments
 (0)