Skip to content

Commit 2758d15

Browse files
committed
ci: update workflows
1 parent 346fa3b commit 2758d15

File tree

11 files changed

+26
-21
lines changed

11 files changed

+26
-21
lines changed

.github/workflows/issue-close-require.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
close-issues:
9-
if: github.repository == 'vitejs/vite'
9+
if: github.repository == 'vitejs/rolldown-vite'
1010
runs-on: ubuntu-latest
1111
permissions:
1212
issues: write # for actions-cool/issues-helper to update issues

.github/workflows/issue-labeled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
reply-labeled:
9-
if: github.repository == 'vitejs/vite'
9+
if: github.repository == 'vitejs/rolldown-vite'
1010
runs-on: ubuntu-latest
1111
permissions:
1212
issues: write # for actions-cool/issues-helper to update issues

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
publish:
1212
# prevents this action from running on forks
13-
if: github.repository == 'vitejs/vite'
13+
if: github.repository == 'vitejs/rolldown-vite'
1414
runs-on: ubuntu-latest
1515
permissions:
1616
contents: read

.github/workflows/release-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
release:
14-
if: github.repository == 'vitejs/vite'
14+
if: github.repository == 'vitejs/rolldown-vite'
1515
runs-on: ubuntu-latest
1616
permissions:
1717
contents: write # for yyx990803/release-tag to create a release tag
@@ -47,4 +47,4 @@ jobs:
4747
with:
4848
tag_name: ${{ github.ref }}
4949
body: |
50-
Please refer to [CHANGELOG.md](https://github.com/vitejs/vite/blob/${{ github.ref_name }}/packages/${{ steps.tag.outputs.pkgName }}/CHANGELOG.md) for details.
50+
Please refer to [CHANGELOG.md](https://github.com/vitejs/rolldown-vite/blob/${{ github.ref_name }}/packages/${{ steps.tag.outputs.pkgName }}/CHANGELOG.md) for details.

.github/workflows/semantic-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
main:
12-
if: github.repository == 'vitejs/vite'
12+
if: github.repository == 'vitejs/rolldown-vite'
1313
runs-on: ubuntu-latest
1414
name: Semantic Pull Request
1515
permissions:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"packageManager": "[email protected]",
9999
"pnpm": {
100100
"overrides": {
101-
"vite": "workspace:*"
101+
"vite": "workspace:rolldown-vite@*"
102102
},
103103
"patchedDependencies": {
104104

packages/vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "vite",
2+
"name": "rolldown-vite",
33
"version": "6.3.0-beta.0",
44
"type": "module",
55
"license": "MIT",

packages/vite/src/node/__tests__/config.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ describe('loadConfigFromFile', () => {
754754
))!
755755
expect(config).toMatchInlineSnapshot(`
756756
{
757-
"jsonValue": "vite",
757+
"jsonValue": "rolldown-vite",
758758
}
759759
`)
760760
},

pnpm-lock.yaml

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/publishCI.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
import { publish } from '@vitejs/release-scripts'
22

3-
publish({ defaultPackage: 'vite', provenance: true, packageManager: 'pnpm' })
3+
publish({
4+
defaultPackage: 'rolldown-vite',
5+
provenance: true,
6+
packageManager: 'pnpm',
7+
})

0 commit comments

Comments
 (0)