chore: off-by-one in workflow (#17634)

pull/17635/head
Elliott Johnson 3 months ago committed by GitHub
parent 3970e7a302
commit 660c4c12b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -89,7 +89,7 @@ jobs:
const raw = JSON.parse(fs.readFileSync('output.json', 'utf8'));
const ALLOWED_PACKAGES = new Set(['svelte']);
const SHA_PATTERN = /^[0-9a-f]{6}$/;
const SHA_PATTERN = /^[0-9a-f]{7}$/;
const packages = (raw.packages || [])
.filter(p => {

Loading…
Cancel
Save