Skip to content

Commit

Permalink
Don't update integration versions automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Tatarintsev committed May 10, 2024
1 parent e4421d0 commit 9b9a07a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/check-updates.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import fs from 'node:fs/promises';
import { $ } from 'zx';
import pRetry from 'p-retry';
import { $ } from 'zx';

import { NPM_TAGS, type NpmTag, readVersionFile } from './utils';

async function main() {
for (let tag of NPM_TAGS) {
for (const tag of NPM_TAGS.filter((tag) => tag !== 'integration')) {
await checkUpdate(tag);
}
}
Expand Down

0 comments on commit 9b9a07a

Please sign in to comment.