-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(ci): skip vercel for gtmq_ branches
- Loading branch information
Greg O'Grady
committed
Nov 11, 2024
1 parent
1fbdacc
commit b098aa5
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: 'Skip Vercel Checks' | ||
on: | ||
pull_request: | ||
types: [opened] | ||
# branches: | ||
# - 'gtmq_**' | ||
|
||
jobs: | ||
vercel_checks: | ||
name: Vercel Preview Comments | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Skip Vercel Preview Comments | ||
run: echo "Skipping Vercel Preview Comments for gtmq_" | ||
|
||
# vercel: | ||
# name: UI Tests | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Skip Vercel UI Tests | ||
# run: echo "Skipping Vercel UI Tests for gtmq_" |