Skip to content

Commit

Permalink
fix: release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvander authored Mar 21, 2024
1 parent 50d7765 commit ebf7465
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: google-github-actions/release-please-action@v4
id: release
with:
skip-github-pull-request: ${{ !contains(github.event.head_commit.message, 'chore(main)') && !contains(github.event.head_commit.message, 'release biome-pkl') }}
skip-github-pull-request: ${{ !contains(github.event.head_commit.message, 'release biome-pkl') }}
- name: Build Package
run: |
mise run pull-schema
Expand All @@ -33,3 +33,7 @@ jobs:
TAG=${{ steps.release.outputs.tag_name }}
gh release upload ${{ steps.release.outputs.tag_name }} .out/$TAG/*
gh release edit ${{ steps.release.outputs.tag_name }} -t ${{ steps.release.outputs.tag_name }}
- name: Approve Release PR
uses: hmarr/auto-approve-action@v4
with:
pull-request-number: ${{ steps.release.outputs }}

0 comments on commit ebf7465

Please sign in to comment.