Skip to content

Commit

Permalink
fix Approve Pull Request step condition
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <[email protected]>
  • Loading branch information
frouioui committed Oct 24, 2023
1 parent e78353d commit bfbd8a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/auto_approve_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v3

- name: Approve Pull Request
if: ${{ github.event.pull_request.user.login == 'vitess-bot[bot]' }} && ${{ github.event.pull_request.draft == 'false' }}
if: github.event.pull_request.user.login == 'vitess-bot[bot]' && github.event.pull_request.draft == 'false'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand Down

0 comments on commit bfbd8a5

Please sign in to comment.