Conversation
Hyperfine Performance
|
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2025.12.12 x -- echo |
21.5 ± 0.7 | 20.3 | 29.0 | 1.00 |
mise x -- echo |
22.4 ± 0.5 | 21.1 | 24.6 | 1.04 ± 0.04 |
mise env
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2025.12.12 env |
20.9 ± 0.7 | 19.9 | 26.2 | 1.00 |
mise env |
21.6 ± 0.6 | 20.2 | 27.8 | 1.03 ± 0.04 |
mise hook-env
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2025.12.12 hook-env |
21.1 ± 0.4 | 19.8 | 22.3 | 1.00 |
mise hook-env |
22.0 ± 0.5 | 20.7 | 23.8 | 1.04 ± 0.03 |
mise ls
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
mise-2025.12.12 ls |
18.5 ± 0.4 | 17.6 | 21.5 | 1.00 |
mise ls |
19.3 ± 0.5 | 18.1 | 20.7 | 1.04 ± 0.04 |
xtasks/test/perf
| Command | mise-2025.12.12 | mise | Variance |
|---|---|---|---|
| install (cached) | 113ms | 113ms | +0% |
| ls (cached) | 68ms | 68ms | +0% |
| bin-paths (cached) | 77ms | 76ms | +1% |
| task-ls (cached) | 289ms | -87% |
0e97d30 to
116dddb
Compare
1ef57fd to
534cb24
Compare
ab89cfc to
b06213b
Compare
jdx
added a commit
that referenced
this pull request
Dec 19, 2025
## Summary Before using a token from the pool, verify it works by calling the GitHub rate_limit API. This catches invalid/expired tokens early rather than failing later in the workflow. ## Problem PR #7395 was failing because `wait-for-gh-rate-limit` got a 401 error - the token from the pool was invalid but wasn't validated before being used. ## Solution Add a curl call to `https://api.github.com/rate_limit` after fetching the token to verify it works. If validation fails, skip the token (workflow will use the default `GITHUB_TOKEN`). 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Validate fetched pool token via GitHub API and tighten checks/early exits in the fetch-token action. > > - **CI / GitHub Action** (`.github/actions/fetch-token/action.yml`): > - Early exit when API response is empty. > - Extracts and masks `token`; enforces stricter format/length validation. > - Adds live validation via GitHub `rate_limit` API; skips on failure. > - Emits `token` and `token_id` outputs only after successful validation. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 552b6ce. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🚀 Features
🐛 Bug Fixes
📚 Documentation
mise rununiformly in its examples by @muzimuzhi in #7444🧪 Testing
📦️ Dependency Updates
📦 Registry
Chore
New Contributors