chore: update github action to always pass required checks #2
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
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.' |