Skip to content

[Snyk] Fix for 1 vulnerabilities #701

[Snyk] Fix for 1 vulnerabilities

[Snyk] Fix for 1 vulnerabilities #701

name: PR check
on:
pull_request:
branches:
- "release-*"
jobs:
test-default-branch:
name: base branch is a default branch
runs-on: ubuntu-latest
steps:
- name: fail if base branch is not default branch
if: ${{ github.event.pull_request.base.ref != github.event.repository.default_branch }}
uses: actions/github-script@v3
with:
script: |
core.setFailed("Base branch of the PR - ${{ github.event.pull_request.base.ref }} is not a default branch. Please reopen your PR to ${{ github.event.repository.default_branch }}")