Skip to content

Commit c004960

Browse files
Fix sqlx workflow syntax
1 parent 6442539 commit c004960

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/commit-sqlx-changes.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,16 @@ jobs:
7070
needs: commit-sqlx-changes
7171
runs-on: ubuntu-latest
7272
env:
73-
OUTPUT1: $
73+
OUTPUT1:
7474
steps:
7575
- name: Open pull request
76-
if: ${{ OUTPUT1 == 'need_or' }}
76+
if: ${{ needs.commit-sqlx-changes.outputs.output1 == 'need_or' }}
7777
uses: peter-evans/create-pull-request@v7
7878
with:
7979
commit-message: Update SQLX files
8080
committer: Docs.rs developers <[email protected]>
8181
author: Docs.rs developers <[email protected]>
8282
signoff: false
83-
title: Update SQLX files
8483
delete-branch: true
8584
branch: update-sqlx-pr-${{ github.event.pull_request.number }}
8685
title: Update SQLX files after #${{ github.event.pull_request.number }} changes

0 commit comments

Comments
 (0)