Skip to content

Bump postcss from 8.4.28 to 8.4.29 #21

Bump postcss from 8.4.28 to 8.4.29

Bump postcss from 8.4.28 to 8.4.29 #21

Workflow file for this run

name: Check pull request target branch
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
jobs:
check-branch:
runs-on: ubuntu-latest
steps:
- name: Check branch
run: |
if [ ${{ github.base_ref }} != "dev" ]; then
echo "Pull requests are only allowed to dev branch."
exit 1
fi