Skip to content

Commit 6e0945d

Browse files
committed
fix: dependabot registries schema and add Vercel CI status
- Remove invalid npm-npmjs registry (public npm is default; schema requires auth for custom registries) - Add Notify Vercel step to report CI result for deployment checks
1 parent bdfb638 commit 6e0945d

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
version: 2
22

3-
registries:
4-
npm-npmjs:
5-
type: npm-registry
6-
url: https://registry.npmjs.org
7-
replaces-base: true
8-
93
updates:
104
# npm dependencies (pnpm workspace root)
115
- package-ecosystem: npm
@@ -21,8 +15,6 @@ updates:
2115
dependency-type: development
2216
update-types: [minor, patch]
2317
open-pull-requests-limit: 5
24-
registries:
25-
- npm-npmjs
2618
labels:
2719
- dependencies
2820

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ jobs:
4343
- name: Lint, typecheck, test, build
4444
run: pnpm exec turbo run lint typecheck test build
4545

46+
- name: Notify Vercel
47+
if: always()
48+
uses: vercel/repository-dispatch/actions/status@v1
49+
with:
50+
name: Vercel - souls-directory: lint
51+
4652
- name: Save Turbo cache
4753
uses: actions/cache@v4
4854
with:

0 commit comments

Comments
 (0)