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/FUNDING.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/dependabot.yaml

This file was deleted.

47 changes: 47 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
groups:
actions-security:
applies-to: security-updates
patterns:
- "*"
actions-major:
applies-to: version-updates
update-types:
- "major"
patterns:
- "*"
actions-minor:
applies-to: version-updates
update-types:
- "minor"
- "patch"
patterns:
- "*"

- package-ecosystem: "bun"
directory: "/"
schedule:
interval: "weekly"
groups:
bun-security:
applies-to: security-updates
patterns:
- "*"
bun-major:
applies-to: version-updates
update-types:
- "major"
patterns:
- "*"
bun-minor:
applies-to: version-updates
update-types:
- "minor"
- "patch"
patterns:
- "*"
22 changes: 0 additions & 22 deletions .github/workflows/build.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/lint-gha.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint

on:
push:
branches: [main]
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
configs:
uses: LouisBrunner/.github/.github/workflows/lint-configs.yml@main

Check failure on line 14 in .github/workflows/lint.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=LouisBrunner_diff-action&issues=AZ8BlNcjIEHkqG4Sj9iP&open=AZ8BlNcjIEHkqG4Sj9iP&pullRequest=72

Check failure

Code scanning / SonarCloud

External GitHub Actions and workflows should be pinned to a commit hash High

Use full commit SHA hash for this dependency. See more on SonarQube Cloud
Comment thread
sonarqubecloud[bot] marked this conversation as resolved.
Dismissed

test:
uses: LouisBrunner/.github/.github/workflows/lint-bun.yml@main

Check failure on line 17 in .github/workflows/lint.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=LouisBrunner_diff-action&issues=AZ8BlNcjIEHkqG4Sj9iQ&open=AZ8BlNcjIEHkqG4Sj9iQ&pullRequest=72

Check failure

Code scanning / SonarCloud

External GitHub Actions and workflows should be pinned to a commit hash High

Use full commit SHA hash for this dependency. See more on SonarQube Cloud
Comment thread
sonarqubecloud[bot] marked this conversation as resolved.
Dismissed
with:
command: bun run all
24 changes: 0 additions & 24 deletions .github/workflows/update-tags.yaml

This file was deleted.

10 changes: 10 additions & 0 deletions .github/workflows/update-tags.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Update aggregate tags

on:
push:
tags:
- "v*.*"

jobs:
retag:
uses: LouisBrunner/.github/.github/workflows/update-tags.yml@main

Check failure on line 10 in .github/workflows/update-tags.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=LouisBrunner_diff-action&issues=AZ8BlNauIEHkqG4Sj9iO&open=AZ8BlNauIEHkqG4Sj9iO&pullRequest=72

Check failure

Code scanning / SonarCloud

External GitHub Actions and workflows should be pinned to a commit hash High

Use full commit SHA hash for this dependency. See more on SonarQube Cloud
Comment thread
sonarqubecloud[bot] marked this conversation as resolved.
Dismissed
4 changes: 2 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.8/schema.json",
"$schema": "https://biomejs.dev/schemas/2.5.0/schema.json",
"assist": {
"actions": {
"source": {
Expand All @@ -23,7 +23,7 @@
"linter": {
"enabled": true,
"rules": {
"recommended": true
"preset": "recommended"
}
},
"vcs": {
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"pack": "bun build src/main.ts --outfile dist/index.js --target node --production",
"test": "bun test",
"typecheck": "tsc --noEmit",
"vet": "bun run typecheck && bunx @biomejs/biome check"
"vet": "bun run typecheck && bunx @biomejs/biome check",
"vet:ci": "bun run typecheck && bunx @biomejs/biome ci"
},
"type": "module",
"version": "1.0.0"
Expand Down
Loading