chore(deps): update tanstack/config digest to 6ddd247#331
Conversation
📝 WalkthroughWalkthroughThis PR updates three GitHub Actions workflow files to use newer pinned commit SHAs for shared TanStack/config actions. The Setup Tools and Changeset Preview action references are refreshed across autofix, PR, and release workflows. ChangesWorkflow Action Dependency Updates
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
View your CI Pipeline Execution ↗ for commit 00005f3
☁️ Nx Cloud last updated this comment at |
@tanstack/angular-store
@tanstack/lit-store
@tanstack/preact-store
@tanstack/react-store
@tanstack/solid-store
@tanstack/store
@tanstack/svelte-store
@tanstack/vue-store
commit: |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/workflows/pr.yml:
- Line 79: The version-preview CI job lacks GitHub Issues write permission
causing the changeset-preview step (uses:
TanStack/config/.github/changeset-preview@6ddd247a...) to fail with 403; update
the version-preview job in .github/workflows/pr.yml to add a permissions section
that grants issues: write for the job so the changeset-preview action can post
comments via the Issues API.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 3f7724ab-3b76-4fc6-bcbb-ce3ec4beac41
📒 Files selected for processing (3)
.github/workflows/autofix.yml.github/workflows/pr.yml.github/workflows/release.yml
| uses: TanStack/config/.github/setup@6ddd247a7748fef503de0818293a732f6447fd92 # main | ||
| - name: Changeset Preview | ||
| uses: TanStack/config/.github/changeset-preview@e4b48f16568324f76f467aa4c2aac2f05db632c3 # main | ||
| uses: TanStack/config/.github/changeset-preview@6ddd247a7748fef503de0818293a732f6447fd92 # main |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Verify permissions and changeset-preview usage in PR workflow
rg -n -C2 '^\s*permissions:|issues:\s*write|pull-requests:\s*write|changeset-preview@' .github/workflows/pr.ymlRepository: TanStack/store
Length of output: 557
🏁 Script executed:
cat -n .github/workflows/pr.ymlRepository: TanStack/store
Length of output: 3169
Add issues: write permission to the version-preview job.
The changeset-preview action at line 79 posts comments via the GitHub Issues API. Without the issues: write permission, this step fails with a 403 error.
🔧 Suggested fix
version-preview:
name: Version Preview
runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ issues: write
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In @.github/workflows/pr.yml at line 79, The version-preview CI job lacks GitHub
Issues write permission causing the changeset-preview step (uses:
TanStack/config/.github/changeset-preview@6ddd247a...) to fail with 403; update
the version-preview job in .github/workflows/pr.yml to add a permissions section
that grants issues: write for the job so the changeset-preview action can post
comments via the Issues API.
This PR contains the following updates:
e4b48f1→6ddd247Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.