Skip to content

Commit 73a1d3d

Browse files
Update CI.yml
1 parent 618819a commit 73a1d3d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/CI.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,11 @@ jobs:
7575
merge:
7676
runs-on: ubuntu-latest
7777
needs: [test]
78-
if: github.actor == 'dependabot[bot]' || github.actor == 'pre-commit-ci[bot]' # Detect that the PR author is dependabot or pre-commit-ci
78+
# Only run if the PR author is Dependabot or pre-commit-ci
79+
if: >
80+
github.actor == 'dependabot[bot]' ||
81+
github.actor == 'pre-commit-ci[bot]'
82+
7983
steps:
8084
- uses: actions/checkout@v4
8185
- name: Enable auto-merge for Dependabot PRs

0 commit comments

Comments
 (0)