Skip to content
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
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: Bug report
description: Report behavior that did not work as expected.
title: ""
labels:
- bug
body:
Expand Down
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: Feature request
description: Suggest an improvement or new capability.
title: ""
labels:
- enhancement
body:
Expand Down
8 changes: 4 additions & 4 deletions SOURCE.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"repository": "LasVegasForTransit/repository-tooling",
"ref": "v0.1.0",
"commit": "1628e931f84d69b23ed08b7f3ba0125c8307bc06",
"ref": "v0.1.1",
"commit": "264ab732a37162a1b1b324f51820b1a5b0537550",
"files": {
".github/ISSUE_TEMPLATE/bug.yml": "04ad19b1762d23f0e07aa08b0929752663ae158c44f952489f17ea01420f800f",
".github/ISSUE_TEMPLATE/feature.yml": "6e1a717193eaf7a24a7e90caa4d31b9173dc18fc101401d53af45bb2a9fff0dd",
".github/ISSUE_TEMPLATE/bug.yml": "640865f0fc20f6dbc5335db7a9a3a4b0d0e471829ff5da46c0f785497624ba36",
".github/ISSUE_TEMPLATE/feature.yml": "b9510f2223104a4f420a3bd52d212512f5613c65ee4cf1efdc83a8fffa1149f8",
".github/ISSUE_TEMPLATE/config.yml": "8b09e7df09fc7534371988062769ee427af2954a02c04c763e8a8005be0f2be4",
".github/pull_request_template.md": "38ee62db634c37469a06d37bfac8c63a8c1592a7fa4c612b8c8206b68ef8b953"
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lvbt-community-health",
"private": true,
"version": "0.1.0",
"version": "0.1.1",
"type": "module",
"engines": {
"node": ">=24"
Expand Down
2 changes: 1 addition & 1 deletion tests/community-health.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const read = (file) => readFile(path.join(root, file));
test('published community files match the pinned tooling release', async () => {
const source = JSON.parse(await read('SOURCE.json'));
assert.equal(source.repository, 'LasVegasForTransit/repository-tooling');
assert.equal(source.ref, 'v0.1.0');
assert.equal(source.ref, 'v0.1.1');

for (const [file, expected] of Object.entries(source.files)) {
const digest = createHash('sha256').update(await read(file)).digest('hex');
Expand Down