Skip to content
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

fix(CI): Correctly call test/update-bundler-manifest.js script #77000

Merged
merged 1 commit into from
Mar 12, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/rspack-update-tests-manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# We don't currently have any CI running on every PR, so it's quite
# possible for us to regress on tests. We need to skip the
# only-promote-to-passing merge logic.
SCRIPT: test/update_build_manifest.js --bundler rspack --testSuite dev --override
SCRIPT: test/update-bundler-manifest.js --bundler rspack --test-suite dev --override
PR_TITLE: Update bundler development test manifest
PR_BODY: This auto-generated PR updates the development integration test manifest used when testing alternative bundlers.
update_build_manifest:
Expand Down Expand Up @@ -81,6 +81,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_PULL_REQUESTS }}
BRANCH_NAME: rspack-manifest
SCRIPT: test/update_build_manifest.js --bundler rspack --testSuite build --override
SCRIPT: test/update-bundler-manifest.js --bundler rspack --test-suite build --override
PR_TITLE: Update bundler production test manifest
PR_BODY: This auto-generated PR updates the production integration test manifest used when testing alternative bundlers.
4 changes: 2 additions & 2 deletions .github/workflows/turbopack-update-tests-manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_PULL_REQUESTS }}
BRANCH_NAME: turbopack-manifest
SCRIPT: test/update_build_manifest.js --bundler turbopack --testSuite dev
SCRIPT: test/update-bundler-manifest.js --bundler turbopack --test-suite dev
PR_TITLE: Update Turbopack development test manifest
PR_BODY: This auto-generated PR updates the development integration test manifest used when testing Turbopack.
update_build_manifest:
Expand Down Expand Up @@ -77,6 +77,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_PULL_REQUESTS }}
BRANCH_NAME: turbopack-manifest
SCRIPT: test/update_build_manifest.js --bundler turbopack --testSuite build
SCRIPT: test/update-bundler-manifest.js --bundler turbopack --test-suite build
PR_TITLE: Update Turbopack production test manifest
PR_BODY: This auto-generated PR updates the production integration test manifest used when testing Turbopack.
Loading