Skip to content

Commit

Permalink
Merge pull request #30 from ronati/auto-type
Browse files Browse the repository at this point in the history
Auto type
  • Loading branch information
adanylenko authored Mar 11, 2024
2 parents 94821cf + 302b82d commit 42d84b9
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 245 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/semver-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
- name: Test app
run: make testacc
- name: Generate documentation
run: make docs
run: make doc
- name: Install dependencies
run: npm i -D @semantic-release/git @semantic-release/changelog @commitlint/{cli,config-conventional} commitlint
run: npm i
# - name: Check commit format
# # Checks commit from latest tag on this branch
# # run: npx commitlint --from $(git describe --tags) --to HEAD --verbose
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ website/vendor

# Keep windows files with windows line endings
*.winfile eol=crlf
node_modules
4 changes: 2 additions & 2 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"branches": [
"master",
{ "name": "beta", "prerelease": true },
{ "name": "test-build", "prerelease": true }
{ "name": "auto-type", "prerelease": true }
],
"plugins": [
"@semantic-release/commit-analyzer",
Expand All @@ -11,7 +11,7 @@
[
"@semantic-release/git",
{
"assets": ["docs"],
"assets": ["docs", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
Expand Down
6 changes: 3 additions & 3 deletions docs/resources/collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
page_title: "typesense_collection Resource - typesense"
subcategory: ""
description: |-
Collection resource
Group of related documents which are roughly equivalent to a table in a relational database. Terraform will still remove auto-created fields for collections with auto-type, so you need to manually update the collection schema to match generated fields
---

# typesense_collection (Resource)

Collection resource
Group of related documents which are roughly equivalent to a table in a relational database. Terraform will still remove auto-created fields for collections with auto-type, so you need to manually update the collection schema to match generated fields

## Example Usage

Expand Down Expand Up @@ -57,7 +57,7 @@ resource "typesense_collection" "my_collection" {
Required:

- `name` (String)
- `type` (String) Field type
- `type` (String) Field type.

Optional:

Expand Down
Loading

0 comments on commit 42d84b9

Please sign in to comment.