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
4 changes: 2 additions & 2 deletions SOURCE.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"repository": "LasVegasForTransit/repository-tooling",
"ref": "v1.0.1",
"commit": "398d88641a6172e68a4f5e93bcad4ee2cb2e04ec",
"ref": "v0.1.0",
"commit": "1628e931f84d69b23ed08b7f3ba0125c8307bc06",
"files": {
".github/ISSUE_TEMPLATE/bug.yml": "04ad19b1762d23f0e07aa08b0929752663ae158c44f952489f17ea01420f800f",
".github/ISSUE_TEMPLATE/feature.yml": "6e1a717193eaf7a24a7e90caa4d31b9173dc18fc101401d53af45bb2a9fff0dd",
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": "1.0.0",
"version": "0.1.0",
"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, 'v1.0.1');
assert.equal(source.ref, 'v0.1.0');

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