Skip to content

chore(deps): bump clap from 4.2.4 to 4.3.0 #117

chore(deps): bump clap from 4.2.4 to 4.3.0

chore(deps): bump clap from 4.2.4 to 4.3.0 #117

Workflow file for this run

name: branch protection
on:
pull_request:
types: [opened, edited]
jobs:
check:
if: ${{ github.base_ref == 'main' }}
name: Branch protection
runs-on: ubuntu-latest
steps:
- name: Allowed
run: echo "Merge allowed."
if: ${{ github.head_ref == 'dev' }}
- name: Blocked
run: echo "Merge blocked." && exit 1
if: ${{ github.head_ref != 'dev' }}