Skip to content

Commit

Permalink
do not apply pkg.pr.new logic in selftest
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Aug 16, 2024
1 parent d2329cc commit a94bd14
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ecosystem-ci.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ cli
// Need to setup the Vue repo to get the package names
await setupVueRepo(options)

const isSelfTest = suites.length === 1 && suites[0] === '_selftest'

// Normalize branch / commit to pkg.pr.new releases
if (!options.release && !options.tag && !options.local) {
if (!isSelfTest && !options.release && !options.tag && !options.local) {
if (options.commit) {
options.release = `@${options.commit.slice(0, 7)}`
} else if (options.repo === 'vuejs/core' && options.branch) {
Expand Down

0 comments on commit a94bd14

Please sign in to comment.