Skip to content

Commit

Permalink
Fix typo in package version
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidHerreros committed Jul 3, 2024
1 parent 4203b22 commit c157cae
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/main_merge_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 'Check merging branch'

on:
pull_request:

jobs:
check_branch:
runs-on: ubuntu-latest
steps:
- name: Check branch
if: github.base_ref == 'main' && github.head_ref != 'dev'
run: |
echo "ERROR: You can only merge to main from dev."
exit 1

0 comments on commit c157cae

Please sign in to comment.