Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/commit-sqlx-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,8 @@ jobs:
- name: Clean up the database
run: docker compose down --volumes

create-pull-request:
if: ${{ github.event.pull_request.merged }}
needs: commit-sqlx-changes
runs-on: ubuntu-latest
steps:
- name: Open pull request
if: ${{ needs.commit-sqlx-changes.outputs.need_pr == '1' }}
if: ${{ steps.sqlx_check.outputs.need_pr == '1' }}
uses: peter-evans/create-pull-request@v7
with:
commit-message: Update SQLX files
Expand All @@ -83,6 +78,6 @@ jobs:
signoff: false
delete-branch: true
branch: update-sqlx-pr-${{ github.event.pull_request.number }}
title: Update SQLX files after #${{ github.event.pull_request.number }} changes
title: Update SQLX files after \#${{ github.event.pull_request.number }} changes
body: |
Following #${{ github.event.pull_request.number }} changes, here are the related SQLX files changes.
Loading