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
9 changes: 9 additions & 0 deletions .commitlintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export default {
extends: ["@commitlint/config-conventional"],
rules: {
// Dependabot or we like long headers...
"header-max-length": [0, "always", 0],
// allow long commit bodies (links / long explanations)
"body-max-line-length": [0, "always", 0],
},
};
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
# Probe the hosted runner (same flavor as the original try job) so we
# can decide whether to use a hosted runner or fall back to
# self-hosted. The job should fail if quota is exhausted.
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Quota probe
id: quota_probe
Expand All @@ -28,7 +28,7 @@ jobs:
# ESLint job inlined from check-shared-steps.yml
needs: detect-quota
if: ${{ always() }}
runs-on: ${{ needs.detect-quota.result == 'success' && 'ubuntu-latest' || 'self-hosted' }}
runs-on: ${{ needs.detect-quota.result == 'success' && 'ubuntu-slim' || 'self-hosted' }}
continue-on-error: true
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# Probe the hosted runner to decide whether to use hosted runners or
# fall back to self-hosted. Use the same runner flavor as the original
# try job.
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Quota probe
id: quota_probe
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
detect-quota:
# Probe the hosted runner flavor used by release steps so we can fall
# back if necessary.
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Quota probe
id: quota_probe
Expand Down
11 changes: 0 additions & 11 deletions commitlint.config.mjs

This file was deleted.

1 change: 0 additions & 1 deletion scripts/copy-test-assets.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env node
import { cp } from "fs/promises";
import path from "path";

Expand Down