Skip to content

Commit

Permalink
chore: [#1272] Try to fix the release
Browse files Browse the repository at this point in the history
  • Loading branch information
capricorn86 committed Feb 25, 2024
1 parent b98ae50 commit 607d5ee
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
pull_request:
types: [closed]

permissions:
contents: write
pull-requests: read

jobs:
check-next-version:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -103,8 +107,8 @@ jobs:

- name: Configures Git
run: |
git config --global user.name "${{ secrets.GIT_USER_NAME }}"
git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
git config --global user.name "${{ github.actor }}"
git config --global user.email "$(git log --format='%ae' HEAD^!)"
- name: Creates release branch
run: |
Expand Down

0 comments on commit 607d5ee

Please sign in to comment.