Skip to content

Commit

Permalink
fix: safe merge
Browse files Browse the repository at this point in the history
  • Loading branch information
bobgobills committed Dec 11, 2023
1 parent 5162bb7 commit 559ceed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ jobs:
- name: Build
run: yarn build
- name: Check for safe merge
run: git merge origin/main --no-ff --no-commit
run: |
git config --global user.name 'bobgobills'
git config --global user.email 'bobgobills@users.noreply.github.com'
git merge origin/main --no-ff --no-commit
git merge --abort
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 559ceed

Please sign in to comment.