-
Notifications
You must be signed in to change notification settings - Fork 0
ci: add PyPI/npm/Homebrew publishing, harden release.yml, install contributors-please #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
03eb49d
build: add PyPI (maturin) and npm wrapper packaging for the togl CLI
smorin 434cb19
ci: harden release.yml and add pypi/npm/homebrew publish jobs
smorin 55ca357
ci: add contributors-please workflow
smorin 9415ce3
docs: document publish destinations; track P12 in PROJECTS.md
smorin 721ca2c
style: format pyproject.toml with taplo
smorin b87bf44
ci: use app installation token for homebrew tap push (drop PAT)
smorin 556b21b
docs: fix repo-secrets app name in update-contributors comment
smorin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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
classificationblock requires adefaultproperty (an object withidandlabel), but the file usesdefault_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