Skip to content

Commit

Permalink
[#51] Fix the renovate PR detection condition (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafaozhan authored Jan 10, 2024
1 parent ae63e4a commit 645c626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
move_related_issues: true

- name: 'Add Dependency PR by renovate to "🏗 PR Review"'
if: github.event_name == 'pull_request' && (contains(github.event.pull_request.labels.*.name, 'dependencies') || contains(github.event.pull_request.labels.*.name, 'config')) && (github.event.action == 'opened' || github.event.action == 'ready_for_review' || github.event.action == 'reopened')
if: github.event_name == 'pull_request' && github.event.pull_request.user.login == 'renovate[bot]' && (github.event.action == 'opened' || github.event.action == 'ready_for_review' || github.event.action == 'reopened')
uses: leonsteinhaeuser/[email protected]
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
Expand Down

0 comments on commit 645c626

Please sign in to comment.