Skip to content

Commit

Permalink
ci: fix update CI workflow condition for dedupe-check to use pull req…
Browse files Browse the repository at this point in the history
…uest head ref
  • Loading branch information
zardoy committed Jan 16, 2025
1 parent ce8e414 commit b052422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
dedupe-check:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/next'
if: github.event.pull_request.head.ref == 'next'
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down

0 comments on commit b052422

Please sign in to comment.