We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 597d480 commit 765000fCopy full SHA for 765000f
.github/workflows/check.yml
@@ -79,4 +79,4 @@ jobs:
79
restore-keys: ${{ runner.os }}-pnpm-
80
81
- name: 💅🏻 Type Check, Lint and format
82
- run: pnpm run checkAll
+ run: pnpm run check:all
apps/blog.sakupi01.com/vercel-ignore-build-step.sh
@@ -0,0 +1,14 @@
1
+#!/bin/bash
2
+
3
+echo "VERCEL_GIT_COMMIT_REF: $VERCEL_GIT_COMMIT_REF"
4
5
+if [[ $VERCEL_GIT_COMMIT_REF =~ ^(renovate|gh-pages) ]] ; then
6
+ # Don't build
7
+ echo "🛑 - Build cancelled"
8
+ exit 0;
9
10
+else
11
+ # Proceed with the build
12
+ echo "✅ - Build can proceed"
13
+ exit 1;
14
+fi
0 commit comments