Skip to content

Commit f6d6e62

Browse files
committed
Revert "turn on verdaccio"
This reverts commit 37e6c89.
1 parent 7dfaf2d commit f6d6e62

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.circleci/comment.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ async function run() {
1010
let pr;
1111
// If we aren't running on a PR commit, double check if this is a branch created for a fork. If so, we'll need to
1212
// comment the build link on the fork.
13-
if (true) {
13+
if (!process.env.CIRCLE_PULL_REQUEST) {
1414
try {
1515
const commit = await octokit.git.getCommit({
1616
owner: 'adobe',
@@ -41,7 +41,7 @@ async function run() {
4141
break;
4242
}
4343
}
44-
} else if (true) {
44+
} else if (process.env.CIRCLE_BRANCH === 'main') {
4545
// If it isn't a PR commit, then we are on main. Create a comment for the test app and docs build
4646
await octokit.repos.createCommitComment({
4747
owner: 'adobe',

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -917,6 +917,9 @@ workflows:
917917
requires:
918918
- install
919919
- verdaccio:
920+
filters:
921+
branches:
922+
only: main
920923
requires:
921924
- install
922925
- v-docs:

0 commit comments

Comments
 (0)