Skip to content

Commit 8fe07ed

Browse files
committed
ci: use v3 too
1 parent 6feffcd commit 8fe07ed

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'packages/docs/**'
77
- 'packages/playground/**'
88
pull_request:
9-
branches: [v2]
9+
branches: [v2, v3]
1010
paths-ignore:
1111
- 'packages/docs/**'
1212
- 'packages/playground/**'

.github/workflows/pkg.pr.new.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish Any Commit
22

33
on:
44
pull_request:
5-
branches: [v2]
5+
branches: [v2, v3]
66
paths-ignore:
77
- 'packages/docs/**'
88
- 'packages/playground/**'

packages/nuxt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"vuex",
1010
"store"
1111
],
12-
"homepage": "https://github.com/vuejs/pinia/tree/v2/packages/nuxt#readme",
12+
"homepage": "https://github.com/vuejs/pinia/tree/v3/packages/nuxt#readme",
1313
"bugs": {
1414
"url": "https://github.com/vuejs/pinia/issues"
1515
},

packages/online-playground/src/Header.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function toggleDark() {
114114
<Download />
115115
</button>
116116
<a
117-
href="https://github.com/vuejs/pinia/tree/v2/packages/online-playground"
117+
href="https://github.com/vuejs/pinia/tree/v3/packages/online-playground"
118118
target="_blank"
119119
title="View on GitHub"
120120
class="github"

packages/playground/src/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ const pages = router
4040
4141
const sourceCodeLink = computed(() => {
4242
if (route.name) {
43-
return `https://github.com/vuejs/pinia/blob/v2/packages/playground/src/views/${String(
43+
return `https://github.com/vuejs/pinia/blob/v3/packages/playground/src/views/${String(
4444
route.name
4545
)}.vue`
4646
} else {
47-
return `https://github.com/vuejs/pinia/blob/v2/packages/playground/src/`
47+
return `https://github.com/vuejs/pinia/blob/v3/packages/playground/src/`
4848
}
4949
})
5050
</script>

packages/testing/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"mock",
1212
"testing"
1313
],
14-
"homepage": "https://github.com/vuejs/pinia/tree/v2/packages/testing#readme",
14+
"homepage": "https://github.com/vuejs/pinia/tree/v3/packages/testing#readme",
1515
"bugs": {
1616
"url": "https://github.com/vuejs/pinia/issues"
1717
},

scripts/release.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Flags:
4646
// const preId =
4747
// args.preId ||
4848
// (semver.prerelease(currentVersion) && semver.prerelease(currentVersion)[0])
49-
const EXPECTED_BRANCH = 'v2'
49+
const EXPECTED_BRANCH = 'v3'
5050
// this package will use tags like v1.0.0 while the rest will use the full package name like @pinia/[email protected]
5151
const MAIN_PKG_NAME = 'pinia'
5252
// whether the main package is at the root of the mono repo or this is not a mono repo

0 commit comments

Comments
 (0)