chore(deps): bump type-fest from 4.15.0 to 4.23.0 #124
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
# We need this action since github action path filtering does not mark excluded actions as skipped. | |
# Since both of these jobs are required, we need something that marks them as successful. | |
name: Skip verify version checks | |
on: | |
pull_request: | |
branches: [main] | |
types: [labeled, unlabeled, opened, synchronize] | |
paths-ignore: | |
- "apps/**" | |
- "packages/**" | |
jobs: | |
verify-version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pass | |
run: | | |
echo 'Skipping because no changes to releasables were made.' | |
block-prerelease: | |
if: contains(github.event.pull_request.labels.*.name, 'prerelease') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pass | |
run: | | |
echo 'Skipping because no changes to releasables were made.' |