-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
feat: add skills via tanstack intent #6273
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
Changes from all commits
d978af6
d3610e1
89e8385
8ea2df4
12a2319
3f4ed82
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| # check-skills.yml | ||
| # | ||
| # Validates @tanstack/intent skills on PRs that touch skills or artifacts. | ||
| # | ||
| # Staleness checking after a release is intentionally NOT automated here — run | ||
| # `pnpm test:intent` (which calls `intent validate && intent stale`) locally | ||
| # before cutting a release. Keeping this workflow validation-only means it | ||
| # needs zero write permissions. | ||
|
|
||
| name: Check Skills | ||
|
|
||
| on: | ||
| pull_request: | ||
| paths: | ||
| - 'skills/**' | ||
| - '**/skills/**' | ||
| - '_artifacts/**' | ||
| - '**/_artifacts/**' | ||
| workflow_dispatch: {} | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| validate: | ||
| name: Validate intent skills | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | ||
| with: | ||
| persist-credentials: false | ||
|
|
||
| - name: Setup Node | ||
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | ||
| with: | ||
| node-version: 20 | ||
|
|
||
| - name: Install intent | ||
| run: npm install -g @tanstack/intent | ||
|
|
||
| - name: Validate skills | ||
| run: intent validate --github-summary | ||
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Uh oh!
There was an error while loading. Please reload this page.