Skip to content

Commit cd9f387

Browse files
authored
Merge pull request #3 from atls/feat/new-types
feat(query-types): bigint, arraystring
2 parents 3f175d0 + 3eebcce commit cd9f387

File tree

490 files changed

+9108
-8249
lines changed

Some content is hidden

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

490 files changed

+9108
-8249
lines changed

.config/husky/commit-msg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yarn commit message lint

.config/husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yarn commit staged

.config/husky/prepare-commit-msg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yarn commit message $@

.github/workflows/checks.yaml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/workflows/checks.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Checks
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
check:
8+
name: Checks
9+
uses: atls/shared/.github/workflows/checks.yaml@master
10+
permissions: write-all
11+
with:
12+
node-version: '22'
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Publish image
2+
3+
on:
4+
pull_request:
5+
types:
6+
- closed
7+
branches:
8+
- master
9+
paths-ignore:
10+
- '.github/**'
11+
12+
jobs:
13+
publish:
14+
if: github.event.pull_request.merged == true
15+
uses: atls/shared/.github/workflows/pack-image.yaml@master
16+
permissions: write-all
17+
with:
18+
registryURL: 'ghcr.io'
19+
registryUser: ${{ github.repository_owner }}
20+
project: ${{ github.repository_owner }}
21+
nodeVersion: '22'
22+
secrets:
23+
registryKey: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/publish-npm.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Publish to registry
2+
3+
on:
4+
pull_request:
5+
types:
6+
- closed
7+
branches:
8+
- master
9+
paths-ignore:
10+
- '.github/**'
11+
12+
jobs:
13+
publish:
14+
if: github.event.pull_request.merged == true
15+
uses: atls/shared/.github/workflows/publish.yaml@master
16+
permissions: write-all
17+
with:
18+
appId: ${{ vars.ATLANTIS_SUPER_BOT_APP_ID }}
19+
secrets:
20+
appPrivateKey: ${{ secrets.ATLANTIS_SUPER_BOT_PRIVATE_KEY }}
21+
npmAuthToken: ${{ secrets.NPM_TOKEN }}

.github/workflows/publish.yaml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/tools.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/tools.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Update tools
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
update-tools:
8+
name: Update tools
9+
uses: atls/shared/.github/workflows/tools.yaml@master
10+
permissions: write-all

0 commit comments

Comments
 (0)