Skip to content

Commit b024e09

Browse files
committed
chore: update repository templates to ory/meta@935cc04
1 parent bdc3797 commit b024e09

File tree

4 files changed

+9
-16
lines changed

4 files changed

+9
-16
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
TEST_DATABASE_COCKROACHDB: 'cockroach://root@localhost:26257/defaultdb?sslmode=disable'
139139
strategy:
140140
matrix:
141-
database: [ 'postgres', 'cockroach', 'sqlite', 'mysql' ]
141+
database: ['postgres', 'cockroach', 'sqlite', 'mysql']
142142
steps:
143143
- run: |
144144
docker create --name cockroach -p 26257:26257 \

CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3476,15 +3476,15 @@ We also streamlined how credentials are used. We now differentiate between:
34763476
const kratos = new V0Alpha0(
34773477
new Configuration({
34783478
basePath: config.kratos.admin,
3479-
accessToken: "some-token",
3480-
}),
3479+
accessToken: 'some-token'
3480+
})
34813481
)
34823482

34833483
kratosAdmin.adminCreateIdentity({
3484-
schema_id: "default",
3484+
schema_id: 'default',
34853485
traits: {
34863486
/* ... */
3487-
},
3487+
}
34883488
})
34893489
```
34903490

CONTRIBUTING.md

+3-9
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,9 @@ request, go through this checklist:
176176
changes against the `master` branch.
177177
1. Run the full project test suite with the `go test -tags sqlite ./...` (or
178178
equivalent) command and confirm that it passes.
179-
1. Run `make format` if a `Makefile` is available, `gofmt -s` if the project is
180-
written in Go, `npm run format` if the project is written for NodeJS.
179+
1. Run `make format`
181180
1. Add a descriptive prefix to commits. This ensures a uniform commit history
182-
and helps structure the changelog.
183-
Please refer to this
181+
and helps structure the changelog. Please refer to this
184182
[list of prefixes for Kratos](https://github.com/ory/kratos/blob/master/.github/semantic.yml)
185183
for an overview.
186184

@@ -232,11 +230,7 @@ Please disclose vulnerabilities exclusively to
232230

233231
## Code style
234232

235-
Please follow these guidelines when formatting source code:
236-
237-
- Go code should match the output of `gofmt -s` and pass `golangci-lint run`.
238-
- NodeJS and JavaScript code should be prettified using `npm run format` where
239-
appropriate.
233+
Please run `make format` to format all source code following the Ory standard.
240234

241235
### Working with forks
242236

package-lock.json

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)