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
36 changes: 36 additions & 0 deletions .contributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/smorinlabs/contributors-please/main/schemas/config.schema.json

classifier: path
output_file: CONTRIBUTORS.md
state_file: .contributors.jsonl
in_place: true
in_place_marker_start: "<!-- contributors-please:start -->"
in_place_marker_end: "<!-- contributors-please:end -->"
entry_template: "- [{{name}}]({{profile}}) - {{title}} ({{commits}} commits)"
columns_per_row: 1
sort: contributions
min_contributions: 1
ignore:
- Copilot
- claude
- github-actions[bot]
- dependabot[bot]
- smorin-release-please[bot]

classification:
categories:
- id: docs
label: Documentation Contributor
paths:
- "docs/**"
- "prds/**"
- "*.md"
- ".github/**"
- id: code
label: Code Contributor
paths:
- "crates/**"
- "tests/**"
- "benches/**"
- "nix/**"
default_category: code

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P0: Schema validation will reject this config: the classification block requires a default property (an object with id and label), but the file uses default_category: code — neither the key name nor the value type matches the schema. This means the tool will fail at runtime when it tries to validate the config, blocking the update-contributors workflow entirely.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .contributors.yml, line 36:

<comment>Schema validation will reject this config: the `classification` block requires a `default` property (an object with `id` and `label`), but the file uses `default_category: code` — neither the key name nor the value type matches the schema. This means the tool will fail at runtime when it tries to validate the config, blocking the update-contributors workflow entirely.</comment>

<file context>
@@ -0,0 +1,36 @@
+        - "tests/**"
+        - "benches/**"
+        - "nix/**"
+  default_category: code
</file context>

10 changes: 10 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,13 @@ paths:
- >-
missing input "app-id" which is required by action
"actions/create-github-app-token@v3"
.github/workflows/release.yml:
ignore:
# Same two false positives — release.yml's update-homebrew job mints a
# tap-push App token with the same action + client-id input.
- >-
input "client-id" is not defined in action
"actions/create-github-app-token@v3"
- >-
missing input "app-id" which is required by action
"actions/create-github-app-token@v3"
Loading
Loading