Skip to content

Commit

Permalink
chore: update github action to always pass required checks
Browse files Browse the repository at this point in the history
  • Loading branch information
zlalvani committed Apr 29, 2024
1 parent 1635bda commit 8848aac
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/skip-verify-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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.'

0 comments on commit 8848aac

Please sign in to comment.