Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR updates CI configurations and build scripts by refining version checking and documentation generation steps in the justfile and adjusting the dependabot workflow token syntax.
- Updated the check-if-published recipe in justfile to use a package parameter and streamlined version output messages.
- Modified the docs and test-doc recipes for enhanced documentation build control.
- Adjusted the dependabot workflow configuration for token interpolation.
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| justfile | Updated check-if-published, docs, and test-doc recipes to improve version detection and documentation generation. |
| .github/workflows/dependabot.yml | Minor syntax update for the github-token value in the Dependabot workflow. |
Comments suppressed due to low confidence (1)
.github/workflows/dependabot.yml:15
- [nitpick] Review the removal of quotes around the secret; while this may work as intended, using quotes can help prevent potential parsing issues in some YAML contexts. Ensure this change is consistent with other workflow files.
github-token: ${{secrets.GITHUB_TOKEN}}
| check-if-published: (assert-cmd 'jq') | ||
| check-if-published package=main_crate: (assert-cmd 'jq') | ||
| #!/usr/bin/env bash | ||
| set -euo pipefail |
There was a problem hiding this comment.
The new check-if-published command removes logging of the crate name, which could be useful for debugging version mismatch issues. Consider reintroducing a log for the package name to improve traceability.
| set -euo pipefail | |
| set -euo pipefail | |
| echo "Checking crate: '{{package}}'" |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #91 +/- ##
=======================================
Coverage 85.13% 85.13%
=======================================
Files 13 13
Lines 222 222
Branches 222 222
=======================================
Hits 189 189
Misses 7 7
Partials 26 26 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
## 🤖 New release * `sqlite-hashes`: 0.10.1 -> 0.10.2 (✓ API compatible changes) <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.10.2](v0.10.1...v0.10.2) - 2025-06-06 ### Fixed - fix justfile jq assertion - fix justfile jq test ### Other - set release-plz CI ([#94](#94)) - validate if published in CI ([#93](#93)) - ci updates ([#92](#92)) - more ci updates ([#91](#91)) - More rework of CI and justfiles ([#90](#90)) - update dependabot - ci cleanup </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Yuri Astrakhan <yuriastrakhan@gmail.com>
No description provided.