Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/pkg-pr-new.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: pkg.pr.new
permissions:
contents: read
pull-requests: write
on:
pull_request:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: package.json
- run: npm ci
- run: npm run build
- run: >
npx pkg-pr-new publish
./packages/openworkflow
./packages/cli
./packages/dashboard
2 changes: 1 addition & 1 deletion knip.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://unpkg.com/knip@5/schema.json",
"treatConfigHintsAsErrors": true,

"ignoreBinaries": ["mint", "open"],
"ignoreBinaries": ["mint", "open", "pkg-pr-new"],
"ignoreDependencies": [
"@tanstack/react-router-ssr-query",
"@tanstack/router-plugin",
Expand Down
Loading